diff --git a/grammar.js b/grammar.js index dc9ac67..cc3a37f 100644 --- a/grammar.js +++ b/grammar.js @@ -3,6 +3,10 @@ module.exports = grammar({ word: $ => $._identifier, + externals: $ => [ + $._paired_comment_content + ], + rules: { template: $ => repeat( $._node @@ -152,12 +156,11 @@ module.exports = grammar({ $.unpaired_comment, $.paired_comment ), - unpaired_comment: $ => seq("{#", repeat(/.|\s/), repeat(seq(alias($.unpaired_comment, ""), repeat(/.|\s/))), "#}"), + unpaired_comment: $ => token(seq("{#", /([^#]|#[^}])*/, "#}")), paired_comment: $ => seq( - alias("{%", ""), "comment", optional($._identifier), alias("%}", ""), - repeat(/.|\s/), - repeat(seq(alias($.paired_comment, ""), repeat(/.|\s/))), - alias("{%", ""), "endcomment", alias("%}", "") + "{%", "comment", optional($._identifier), "%}", + $._paired_comment_content, + "{%", "endcomment", "%}" ), // All other content diff --git a/src/grammar.json b/src/grammar.json index a2cfcc0..99852fb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1390,60 +1390,31 @@ ] }, "unpaired_comment": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{#" - }, - { - "type": "REPEAT", - "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{#" + }, + { "type": "PATTERN", - "value": ".|\\s" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "unpaired_comment" - }, - "named": false, - "value": "" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": ".|\\s" - } - } - ] + "value": "([^#]|#[^}])*" + }, + { + "type": "STRING", + "value": "#}" } - }, - { - "type": "STRING", - "value": "#}" - } - ] + ] + } }, "paired_comment": { "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "{%" - }, - "named": false, - "value": "" + "type": "STRING", + "value": "{%" }, { "type": "STRING", @@ -1462,66 +1433,24 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "%}" - }, - "named": false, - "value": "" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": ".|\\s" - } + "type": "STRING", + "value": "%}" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "paired_comment" - }, - "named": false, - "value": "" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": ".|\\s" - } - } - ] - } + "type": "SYMBOL", + "name": "_paired_comment_content" }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "{%" - }, - "named": false, - "value": "" + "type": "STRING", + "value": "{%" }, { "type": "STRING", "value": "endcomment" }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "%}" - }, - "named": false, - "value": "" + "type": "STRING", + "value": "%}" } ] }, @@ -1538,7 +1467,12 @@ ], "conflicts": [], "precedences": [], - "externals": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_paired_comment_content" + } + ], "inline": [], "supertypes": [], "reserved": {} diff --git a/src/node-types.json b/src/node-types.json index 69fee0f..e55ff53 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1,9 +1,4 @@ [ - { - "type": "", - "named": false, - "fields": {} - }, { "type": "branch_statement", "named": true, @@ -216,11 +211,6 @@ ] } }, - { - "type": "unpaired_comment", - "named": true, - "fields": {} - }, { "type": "unpaired_statement", "named": true, @@ -283,10 +273,6 @@ ] } }, - { - "type": "", - "named": false - }, { "type": "!=", "named": false @@ -295,10 +281,6 @@ "type": "\"", "named": false }, - { - "type": "#}", - "named": false - }, { "type": "%}", "named": false @@ -380,12 +362,12 @@ "named": true }, { - "type": "variable_name", + "type": "unpaired_comment", "named": true }, { - "type": "{#", - "named": false + "type": "variable_name", + "named": true }, { "type": "{%", diff --git a/src/parser.c b/src/parser.c index 31015ed..52b4dd0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 502 +#define STATE_COUNT 412 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 88 -#define ALIAS_COUNT 2 -#define TOKEN_COUNT 55 -#define EXTERNAL_TOKEN_COUNT 0 +#define SYMBOL_COUNT 83 +#define ALIAS_COUNT 1 +#define TOKEN_COUNT 54 +#define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 11 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 16 +#define PRODUCTION_ID_COUNT 9 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -68,47 +68,41 @@ enum ts_symbol_identifiers { anon_sym_endfilter = 46, anon_sym_COMMA = 47, anon_sym_EQ = 48, - anon_sym_LBRACE_POUND = 49, - aux_sym_unpaired_comment_token1 = 50, - anon_sym_POUND_RBRACE = 51, - anon_sym_comment = 52, - anon_sym_endcomment = 53, - sym_content = 54, - sym_template = 55, - sym__node = 56, - sym_operator = 57, - sym_string = 58, - sym__expression = 59, - sym_variable = 60, - sym_filter = 61, - sym_filter_name = 62, - sym_filter_argument = 63, - sym__quoted_filter_argument = 64, - sym__statement = 65, - sym_paired_statement = 66, - sym_if_statement = 67, - sym_elif_statement = 68, - sym_else_statement = 69, - sym_for_statement = 70, - sym_empty_statement = 71, - sym_filter_statement = 72, - sym_unpaired_statement = 73, - sym__attribute = 74, - sym__comment = 75, - sym_unpaired_comment = 76, - sym_paired_comment = 77, - aux_sym_template_repeat1 = 78, - aux_sym_string_repeat1 = 79, - aux_sym_string_repeat2 = 80, - aux_sym_string_repeat3 = 81, - aux_sym_filter_argument_repeat1 = 82, - aux_sym_paired_statement_repeat1 = 83, - aux_sym_if_statement_repeat1 = 84, - aux_sym_unpaired_comment_repeat1 = 85, - aux_sym_unpaired_comment_repeat2 = 86, - aux_sym_paired_comment_repeat1 = 87, - anon_alias_sym_ = 88, - alias_sym_end_paired_statement = 89, + sym_unpaired_comment = 49, + anon_sym_comment = 50, + anon_sym_endcomment = 51, + sym_content = 52, + sym__paired_comment_content = 53, + sym_template = 54, + sym__node = 55, + sym_operator = 56, + sym_string = 57, + sym__expression = 58, + sym_variable = 59, + sym_filter = 60, + sym_filter_name = 61, + sym_filter_argument = 62, + sym__quoted_filter_argument = 63, + sym__statement = 64, + sym_paired_statement = 65, + sym_if_statement = 66, + sym_elif_statement = 67, + sym_else_statement = 68, + sym_for_statement = 69, + sym_empty_statement = 70, + sym_filter_statement = 71, + sym_unpaired_statement = 72, + sym__attribute = 73, + sym__comment = 74, + sym_paired_comment = 75, + aux_sym_template_repeat1 = 76, + aux_sym_string_repeat1 = 77, + aux_sym_string_repeat2 = 78, + aux_sym_string_repeat3 = 79, + aux_sym_filter_argument_repeat1 = 80, + aux_sym_paired_statement_repeat1 = 81, + aux_sym_if_statement_repeat1 = 82, + alias_sym_end_paired_statement = 83, }; static const char * const ts_symbol_names[] = { @@ -161,12 +155,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_endfilter] = "tag_name", [anon_sym_COMMA] = ",", [anon_sym_EQ] = "=", - [anon_sym_LBRACE_POUND] = "{#", - [aux_sym_unpaired_comment_token1] = "unpaired_comment_token1", - [anon_sym_POUND_RBRACE] = "#}", + [sym_unpaired_comment] = "unpaired_comment", [anon_sym_comment] = "comment", [anon_sym_endcomment] = "endcomment", [sym_content] = "content", + [sym__paired_comment_content] = "_paired_comment_content", [sym_template] = "template", [sym__node] = "_node", [sym_operator] = "operator", @@ -188,7 +181,6 @@ static const char * const ts_symbol_names[] = { [sym_unpaired_statement] = "unpaired_statement", [sym__attribute] = "_attribute", [sym__comment] = "_comment", - [sym_unpaired_comment] = "unpaired_comment", [sym_paired_comment] = "paired_comment", [aux_sym_template_repeat1] = "template_repeat1", [aux_sym_string_repeat1] = "string_repeat1", @@ -197,10 +189,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_filter_argument_repeat1] = "filter_argument_repeat1", [aux_sym_paired_statement_repeat1] = "paired_statement_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", - [aux_sym_unpaired_comment_repeat1] = "unpaired_comment_repeat1", - [aux_sym_unpaired_comment_repeat2] = "unpaired_comment_repeat2", - [aux_sym_paired_comment_repeat1] = "paired_comment_repeat1", - [anon_alias_sym_] = "", [alias_sym_end_paired_statement] = "end_paired_statement", }; @@ -254,12 +242,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_endfilter] = anon_sym_autoescape, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_LBRACE_POUND] = anon_sym_LBRACE_POUND, - [aux_sym_unpaired_comment_token1] = aux_sym_unpaired_comment_token1, - [anon_sym_POUND_RBRACE] = anon_sym_POUND_RBRACE, + [sym_unpaired_comment] = sym_unpaired_comment, [anon_sym_comment] = anon_sym_comment, [anon_sym_endcomment] = anon_sym_endcomment, [sym_content] = sym_content, + [sym__paired_comment_content] = sym__paired_comment_content, [sym_template] = sym_template, [sym__node] = sym__node, [sym_operator] = sym_operator, @@ -281,7 +268,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_unpaired_statement] = sym_unpaired_statement, [sym__attribute] = sym__attribute, [sym__comment] = sym__comment, - [sym_unpaired_comment] = sym_unpaired_comment, [sym_paired_comment] = sym_paired_comment, [aux_sym_template_repeat1] = aux_sym_template_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, @@ -290,10 +276,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_filter_argument_repeat1] = aux_sym_filter_argument_repeat1, [aux_sym_paired_statement_repeat1] = aux_sym_paired_statement_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, - [aux_sym_unpaired_comment_repeat1] = aux_sym_unpaired_comment_repeat1, - [aux_sym_unpaired_comment_repeat2] = aux_sym_unpaired_comment_repeat2, - [aux_sym_paired_comment_repeat1] = aux_sym_paired_comment_repeat1, - [anon_alias_sym_] = anon_alias_sym_, [alias_sym_end_paired_statement] = alias_sym_end_paired_statement, }; @@ -494,17 +476,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE_POUND] = { - .visible = true, - .named = false, - }, - [aux_sym_unpaired_comment_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_POUND_RBRACE] = { + [sym_unpaired_comment] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_comment] = { .visible = true, @@ -518,6 +492,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__paired_comment_content] = { + .visible = false, + .named = true, + }, [sym_template] = { .visible = true, .named = true, @@ -602,10 +580,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_unpaired_comment] = { - .visible = true, - .named = true, - }, [sym_paired_comment] = { .visible = true, .named = true, @@ -638,22 +612,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_unpaired_comment_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_unpaired_comment_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_paired_comment_repeat1] = { - .visible = false, - .named = false, - }, - [anon_alias_sym_] = { - .visible = true, - .named = false, - }, [alias_sym_end_paired_statement] = { .visible = true, .named = true, @@ -663,77 +621,32 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { - [0] = anon_alias_sym_, - }, - [2] = { [1] = anon_sym_autoescape, }, - [3] = { + [2] = { [5] = alias_sym_end_paired_statement, }, - [4] = { - [0] = anon_alias_sym_, - [2] = anon_alias_sym_, - [3] = anon_alias_sym_, - [5] = anon_alias_sym_, - }, - [5] = { + [3] = { [6] = alias_sym_end_paired_statement, }, - [6] = { + [4] = { [1] = sym_filter_argument, }, - [7] = { - [0] = anon_alias_sym_, - [3] = anon_alias_sym_, - [4] = anon_alias_sym_, - [6] = anon_alias_sym_, - }, - [8] = { - [0] = anon_alias_sym_, - [2] = anon_alias_sym_, - [4] = anon_alias_sym_, - [6] = anon_alias_sym_, - }, - [9] = { + [5] = { [7] = alias_sym_end_paired_statement, }, - [10] = { - [0] = anon_alias_sym_, - [3] = anon_alias_sym_, - [5] = anon_alias_sym_, - [7] = anon_alias_sym_, - }, - [11] = { - [0] = anon_alias_sym_, - [2] = anon_alias_sym_, - [5] = anon_alias_sym_, - [7] = anon_alias_sym_, - }, - [12] = { + [6] = { [8] = alias_sym_end_paired_statement, }, - [13] = { - [0] = anon_alias_sym_, - [3] = anon_alias_sym_, - [6] = anon_alias_sym_, - [8] = anon_alias_sym_, - }, - [14] = { + [7] = { [9] = alias_sym_end_paired_statement, }, - [15] = { + [8] = { [10] = alias_sym_end_paired_statement, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym_unpaired_comment, 2, - sym_unpaired_comment, - anon_alias_sym_, - sym_paired_comment, 2, - sym_paired_comment, - anon_alias_sym_, aux_sym_string_repeat1, 2, aux_sym_string_repeat1, sym_filter_argument, @@ -788,57 +701,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, - [47] = 47, - [48] = 37, - [49] = 13, - [50] = 33, - [51] = 38, + [44] = 33, + [45] = 13, + [46] = 30, + [47] = 34, + [48] = 48, + [49] = 39, + [50] = 40, + [51] = 43, [52] = 52, - [53] = 43, - [54] = 44, - [55] = 47, - [56] = 21, - [57] = 30, - [58] = 31, - [59] = 59, - [60] = 35, - [61] = 41, - [62] = 42, - [63] = 46, - [64] = 59, - [65] = 6, - [66] = 7, - [67] = 8, - [68] = 9, - [69] = 10, - [70] = 14, - [71] = 15, - [72] = 16, - [73] = 17, - [74] = 18, - [75] = 19, - [76] = 20, - [77] = 22, - [78] = 23, - [79] = 52, + [53] = 37, + [54] = 38, + [55] = 42, + [56] = 52, + [57] = 6, + [58] = 7, + [59] = 8, + [60] = 9, + [61] = 10, + [62] = 14, + [63] = 15, + [64] = 16, + [65] = 17, + [66] = 18, + [67] = 19, + [68] = 20, + [69] = 21, + [70] = 22, + [71] = 48, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 72, + [76] = 76, + [77] = 77, + [78] = 73, + [79] = 79, [80] = 80, [81] = 81, - [82] = 82, - [83] = 83, + [82] = 74, + [83] = 77, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, - [88] = 84, - [89] = 85, + [87] = 84, + [88] = 85, + [89] = 89, [90] = 90, [91] = 91, - [92] = 90, - [93] = 87, - [94] = 94, + [92] = 91, + [93] = 93, + [94] = 86, [95] = 95, [96] = 96, [97] = 97, @@ -862,7 +775,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [115] = 115, [116] = 116, [117] = 117, - [118] = 118, + [118] = 96, [119] = 119, [120] = 120, [121] = 121, @@ -873,19 +786,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [126] = 126, [127] = 127, [128] = 128, - [129] = 94, - [130] = 130, - [131] = 131, - [132] = 91, + [129] = 90, + [130] = 127, + [131] = 105, + [132] = 117, [133] = 133, - [134] = 134, - [135] = 116, - [136] = 117, - [137] = 118, - [138] = 124, - [139] = 125, + [134] = 102, + [135] = 107, + [136] = 113, + [137] = 114, + [138] = 138, + [139] = 122, [140] = 140, - [141] = 130, + [141] = 141, [142] = 142, [143] = 143, [144] = 144, @@ -893,61 +806,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [146] = 146, [147] = 147, [148] = 148, - [149] = 140, - [150] = 146, + [149] = 149, + [150] = 150, [151] = 151, - [152] = 96, - [153] = 97, - [154] = 113, - [155] = 133, - [156] = 134, - [157] = 157, - [158] = 95, - [159] = 157, - [160] = 98, - [161] = 100, - [162] = 101, - [163] = 102, - [164] = 103, - [165] = 104, - [166] = 105, - [167] = 106, - [168] = 109, - [169] = 110, - [170] = 111, - [171] = 112, - [172] = 151, - [173] = 114, - [174] = 115, - [175] = 119, - [176] = 120, - [177] = 121, - [178] = 122, - [179] = 123, - [180] = 126, - [181] = 127, - [182] = 128, - [183] = 131, - [184] = 148, - [185] = 143, - [186] = 144, - [187] = 145, - [188] = 188, - [189] = 147, - [190] = 188, - [191] = 191, - [192] = 192, - [193] = 193, - [194] = 192, - [195] = 193, - [196] = 191, + [152] = 152, + [153] = 138, + [154] = 146, + [155] = 110, + [156] = 156, + [157] = 123, + [158] = 133, + [159] = 156, + [160] = 160, + [161] = 161, + [162] = 97, + [163] = 98, + [164] = 99, + [165] = 100, + [166] = 101, + [167] = 104, + [168] = 106, + [169] = 160, + [170] = 108, + [171] = 109, + [172] = 161, + [173] = 111, + [174] = 112, + [175] = 115, + [176] = 116, + [177] = 119, + [178] = 120, + [179] = 121, + [180] = 124, + [181] = 125, + [182] = 126, + [183] = 128, + [184] = 141, + [185] = 142, + [186] = 143, + [187] = 144, + [188] = 145, + [189] = 189, + [190] = 147, + [191] = 148, + [192] = 149, + [193] = 150, + [194] = 151, + [195] = 152, + [196] = 189, [197] = 197, [198] = 198, - [199] = 197, + [199] = 199, [200] = 200, [201] = 200, [202] = 198, - [203] = 203, + [203] = 197, [204] = 204, [205] = 205, [206] = 206, @@ -961,67 +874,67 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [214] = 214, [215] = 215, [216] = 216, - [217] = 217, + [217] = 204, [218] = 218, [219] = 219, - [220] = 220, + [220] = 216, [221] = 221, [222] = 222, - [223] = 205, - [224] = 206, - [225] = 225, - [226] = 207, + [223] = 223, + [224] = 224, + [225] = 221, + [226] = 206, [227] = 227, - [228] = 228, - [229] = 204, - [230] = 209, - [231] = 208, + [228] = 227, + [229] = 229, + [230] = 230, + [231] = 231, [232] = 232, [233] = 233, - [234] = 211, + [234] = 234, [235] = 235, [236] = 236, [237] = 237, - [238] = 212, - [239] = 237, - [240] = 218, - [241] = 213, + [238] = 222, + [239] = 219, + [240] = 240, + [241] = 241, [242] = 242, - [243] = 214, - [244] = 242, - [245] = 235, - [246] = 215, - [247] = 219, - [248] = 216, - [249] = 217, - [250] = 210, - [251] = 251, - [252] = 232, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 225, - [257] = 236, - [258] = 258, - [259] = 228, - [260] = 220, - [261] = 253, - [262] = 221, - [263] = 222, - [264] = 254, - [265] = 251, - [266] = 227, - [267] = 255, - [268] = 233, - [269] = 258, + [243] = 205, + [244] = 207, + [245] = 208, + [246] = 223, + [247] = 229, + [248] = 230, + [249] = 231, + [250] = 232, + [251] = 233, + [252] = 234, + [253] = 235, + [254] = 236, + [255] = 215, + [256] = 237, + [257] = 224, + [258] = 218, + [259] = 259, + [260] = 209, + [261] = 240, + [262] = 210, + [263] = 211, + [264] = 212, + [265] = 241, + [266] = 213, + [267] = 214, + [268] = 242, + [269] = 259, [270] = 270, [271] = 270, [272] = 272, [273] = 273, - [274] = 272, - [275] = 273, - [276] = 272, - [277] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, [278] = 278, [279] = 279, [280] = 280, @@ -1035,7 +948,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [288] = 288, [289] = 289, [290] = 290, - [291] = 278, + [291] = 274, [292] = 292, [293] = 293, [294] = 294, @@ -1043,209 +956,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [296] = 296, [297] = 297, [298] = 298, - [299] = 299, - [300] = 300, - [301] = 283, - [302] = 302, - [303] = 287, - [304] = 304, - [305] = 304, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 278, - [315] = 315, - [316] = 316, + [299] = 294, + [300] = 296, + [301] = 297, + [302] = 273, + [303] = 272, + [304] = 277, + [305] = 283, + [306] = 275, + [307] = 276, + [308] = 278, + [309] = 280, + [310] = 281, + [311] = 282, + [312] = 284, + [313] = 285, + [314] = 286, + [315] = 287, + [316] = 288, [317] = 317, [318] = 318, - [319] = 293, - [320] = 287, - [321] = 304, - [322] = 293, - [323] = 323, - [324] = 317, - [325] = 280, - [326] = 296, - [327] = 300, - [328] = 318, - [329] = 323, - [330] = 298, + [319] = 290, + [320] = 298, + [321] = 295, + [322] = 322, + [323] = 293, + [324] = 324, + [325] = 318, + [326] = 324, + [327] = 289, + [328] = 328, + [329] = 292, + [330] = 330, [331] = 331, [332] = 332, [333] = 333, [334] = 334, [335] = 335, - [336] = 299, + [336] = 336, [337] = 337, - [338] = 331, - [339] = 302, + [338] = 338, + [339] = 339, [340] = 340, - [341] = 331, - [342] = 335, - [343] = 306, + [341] = 341, + [342] = 332, + [343] = 343, [344] = 344, - [345] = 307, - [346] = 297, - [347] = 316, - [348] = 333, - [349] = 349, - [350] = 308, - [351] = 351, - [352] = 309, - [353] = 349, - [354] = 310, - [355] = 311, - [356] = 312, - [357] = 284, - [358] = 281, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 345, + [350] = 334, + [351] = 343, + [352] = 352, + [353] = 353, + [354] = 336, + [355] = 338, + [356] = 356, + [357] = 356, + [358] = 358, [359] = 359, - [360] = 313, - [361] = 315, + [360] = 360, + [361] = 361, [362] = 362, - [363] = 294, - [364] = 279, + [363] = 363, + [364] = 364, [365] = 365, - [366] = 295, - [367] = 282, - [368] = 285, - [369] = 288, - [370] = 289, - [371] = 290, - [372] = 292, - [373] = 335, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 365, + [371] = 371, + [372] = 361, + [373] = 373, [374] = 374, [375] = 375, [376] = 376, - [377] = 377, - [378] = 378, + [377] = 371, + [378] = 376, [379] = 379, - [380] = 380, + [380] = 368, [381] = 381, - [382] = 379, + [382] = 381, [383] = 383, - [384] = 384, + [384] = 383, [385] = 385, [386] = 386, [387] = 387, - [388] = 388, + [388] = 366, [389] = 389, - [390] = 389, - [391] = 386, - [392] = 392, - [393] = 377, - [394] = 381, - [395] = 384, + [390] = 390, + [391] = 362, + [392] = 367, + [393] = 393, + [394] = 387, + [395] = 379, [396] = 396, - [397] = 280, - [398] = 376, - [399] = 300, - [400] = 375, - [401] = 389, - [402] = 337, - [403] = 381, - [404] = 384, - [405] = 376, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 318, - [411] = 388, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 380, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 417, - [420] = 313, - [421] = 421, - [422] = 418, - [423] = 423, - [424] = 421, - [425] = 296, - [426] = 417, - [427] = 297, - [428] = 288, - [429] = 429, - [430] = 430, - [431] = 307, - [432] = 432, - [433] = 308, - [434] = 423, - [435] = 435, - [436] = 421, - [437] = 437, - [438] = 418, - [439] = 437, - [440] = 430, - [441] = 430, - [442] = 435, - [443] = 435, - [444] = 437, - [445] = 423, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 446, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 452, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 453, - [466] = 457, - [467] = 467, - [468] = 468, - [469] = 447, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 467, - [475] = 456, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 460, - [480] = 451, - [481] = 458, - [482] = 464, - [483] = 461, - [484] = 455, - [485] = 471, - [486] = 468, - [487] = 472, - [488] = 488, - [489] = 449, - [490] = 464, - [491] = 456, - [492] = 473, - [493] = 457, - [494] = 476, - [495] = 453, - [496] = 463, - [497] = 462, - [498] = 476, - [499] = 463, - [500] = 478, - [501] = 462, + [397] = 397, + [398] = 398, + [399] = 369, + [400] = 400, + [401] = 385, + [402] = 397, + [403] = 396, + [404] = 375, + [405] = 386, + [406] = 400, + [407] = 363, + [408] = 373, + [409] = 390, + [410] = 364, + [411] = 389, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1253,321 +1076,320 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(21); + if (eof) ADVANCE(20); ADVANCE_MAP( '!', 9, - '"', 38, - '#', 14, - '%', 15, - '\'', 35, - ',', 100, - '.', 97, - ':', 96, - '<', 28, - '=', 101, - '>', 29, - 'F', 44, - 'T', 51, - 'a', 48, - 'i', 49, - 'n', 50, - 'o', 52, + '"', 37, + '%', 13, + '\'', 34, + ',', 99, + '.', 96, + ':', 95, + '<', 27, + '=', 100, + '>', 28, + 'F', 43, + 'T', 50, + 'a', 47, + 'i', 48, + 'n', 49, + 'o', 51, '{', 5, - '|', 41, - '}', 16, + '|', 40, + '}', 14, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(31); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 1: ADVANCE_MAP( '!', 9, - '"', 38, - '%', 15, - '\'', 35, - ',', 100, - '.', 97, - ':', 96, - '<', 28, - '=', 101, - '>', 29, - 'F', 63, - 'T', 84, - 'a', 78, - 'b', 91, - 'f', 85, - 'i', 80, - 'n', 82, - 'o', 70, - 'r', 64, - 's', 72, - 'w', 73, - '|', 41, - '}', 16, + '"', 37, + '%', 13, + '\'', 34, + ',', 99, + '.', 96, + ':', 95, + '<', 27, + '=', 100, + '>', 28, + 'F', 62, + 'T', 83, + 'a', 77, + 'b', 90, + 'f', 84, + 'i', 79, + 'n', 81, + 'o', 69, + 'r', 63, + 's', 71, + 'w', 72, + '|', 40, + '}', 14, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(38); - if (lookahead == '%') ADVANCE(15); - if (lookahead == '\'') ADVANCE(35); + if (lookahead == '"') ADVANCE(37); + if (lookahead == '%') ADVANCE(13); + if (lookahead == '\'') ADVANCE(34); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(38); - if (lookahead == '\'') ADVANCE(35); + if (lookahead == '"') ADVANCE(37); + if (lookahead == '\'') ADVANCE(34); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 4: - if (lookahead == '"') ADVANCE(38); + if (lookahead == '"') ADVANCE(37); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(40); - if (lookahead != 0) ADVANCE(39); + lookahead == ' ') ADVANCE(39); + if (lookahead != 0) ADVANCE(38); END_STATE(); case 5: - if (lookahead == '#') ADVANCE(102); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '{') ADVANCE(59); + if (lookahead == '#') ADVANCE(7); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '{') ADVANCE(58); END_STATE(); case 6: - if (lookahead == '#') ADVANCE(102); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '{') ADVANCE(59); - if (lookahead != 0) ADVANCE(111); + if (lookahead == '#') ADVANCE(7); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '{') ADVANCE(58); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 7: - if (lookahead == '#') ADVANCE(108); - if (lookahead == '{') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(105); - if (lookahead != 0) ADVANCE(103); + if (lookahead == '#') ADVANCE(15); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: - if (lookahead == '\'') ADVANCE(35); + if (lookahead == '\'') ADVANCE(34); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(37); - if (lookahead != 0) ADVANCE(36); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(35); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(27); + if (lookahead == '=') ADVANCE(26); END_STATE(); case 10: - if (lookahead == 'n') ADVANCE(17); + if (lookahead == 'n') ADVANCE(16); END_STATE(); case 11: if (lookahead == 'o') ADVANCE(12); END_STATE(); case 12: - if (lookahead == 't') ADVANCE(17); + if (lookahead == 't') ADVANCE(16); END_STATE(); case 13: - if (lookahead == '{') ADVANCE(106); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(107); - if (lookahead != 0) ADVANCE(103); + if (lookahead == '}') ADVANCE(98); END_STATE(); case 14: - if (lookahead == '}') ADVANCE(109); + if (lookahead == '}') ADVANCE(59); END_STATE(); case 15: - if (lookahead == '}') ADVANCE(99); + if (lookahead == '}') ADVANCE(101); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 16: - if (lookahead == '}') ADVANCE(60); - END_STATE(); - case 17: if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(23); + lookahead == ' ') ADVANCE(22); END_STATE(); - case 18: + case 17: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); - case 19: + case 18: if (lookahead != 0 && lookahead != '#' && lookahead != '%' && - lookahead != '{') ADVANCE(111); + lookahead != '{') ADVANCE(103); END_STATE(); - case 20: - if (eof) ADVANCE(21); + case 19: + if (eof) ADVANCE(20); if (lookahead == '{') ADVANCE(6); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(110); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(102); + if (lookahead != 0) ADVANCE(103); END_STATE(); - case 21: + case 20: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 22: + case 21: ACCEPT_TOKEN(sym_keyword); END_STATE(); - case 23: + case 22: ACCEPT_TOKEN(sym_keyword_operator); END_STATE(); - case 24: + case 23: ACCEPT_TOKEN(sym_keyword_operator); if (lookahead == 'i') ADVANCE(10); END_STATE(); - case 25: + case 24: ACCEPT_TOKEN(sym_keyword_operator); if (lookahead == 'n') ADVANCE(11); END_STATE(); - case 26: + case 25: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 27: + case 26: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 28: + case 27: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(30); + if (lookahead == '=') ADVANCE(29); END_STATE(); - case 29: + case 28: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(31); + if (lookahead == '=') ADVANCE(30); END_STATE(); - case 30: + case 29: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 31: + case 30: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 32: + case 31: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(31); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); - case 33: + case 32: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); END_STATE(); - case 34: + case 33: ACCEPT_TOKEN(sym_boolean); END_STATE(); - case 35: + case 34: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 36: + case 35: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 37: + case 36: ACCEPT_TOKEN(aux_sym_string_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(37); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '\'') ADVANCE(36); + lookahead != '\'') ADVANCE(35); END_STATE(); - case 38: + case 37: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 39: + case 38: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 40: + case 39: ACCEPT_TOKEN(aux_sym_string_token2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(40); + lookahead == ' ') ADVANCE(39); if (lookahead != 0 && - lookahead != '"') ADVANCE(39); + lookahead != '"') ADVANCE(38); END_STATE(); - case 41: + case 40: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); + case 41: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == ' ') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); + END_STATE(); case 42: ACCEPT_TOKEN(sym__identifier); - if (lookahead == ' ') ADVANCE(25); - if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (lookahead == ' ') ADVANCE(23); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(22); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 43: ACCEPT_TOKEN(sym__identifier); - if (lookahead == ' ') ADVANCE(24); - if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (lookahead == 'a') ADVANCE(46); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 44: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'a') ADVANCE(47); + if (lookahead == 'd') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 45: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(56); + if (lookahead == 'e') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 46: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(57); + if (lookahead == 'l') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 47: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'l') ADVANCE(53); + if (lookahead == 'n') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 48: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(45); + if (lookahead == 'n') ADVANCE(55); + if (lookahead == 's') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 49: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(56); - if (lookahead == 's') ADVANCE(42); + if (lookahead == 'o') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 50: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'r') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 51: ACCEPT_TOKEN(sym__identifier); @@ -1575,462 +1397,421 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 52: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'r') ADVANCE(56); + if (lookahead == 's') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 53: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 's') ADVANCE(46); + if (lookahead == 't') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 54: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(43); + if (lookahead == 'u') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 55: ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'u') ADVANCE(46); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(22); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 56: ACCEPT_TOKEN(sym__identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(23); + lookahead == ' ') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 57: ACCEPT_TOKEN(sym__identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(34); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 58: - ACCEPT_TOKEN(sym__identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == ' ') ADVANCE(24); + if (lookahead == '.') ADVANCE(17); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 61: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == ' ') ADVANCE(25); - if (lookahead == '.') ADVANCE(18); - if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (lookahead == ' ') ADVANCE(23); + if (lookahead == '.') ADVANCE(17); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(22); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 62: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == ' ') ADVANCE(24); - if (lookahead == '.') ADVANCE(18); - if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'a') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 63: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'a') ADVANCE(75); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'a') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 64: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'a') ADVANCE(79); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'd') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 65: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'd') ADVANCE(83); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'd') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 66: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'd') ADVANCE(92); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'e') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 67: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'e') ADVANCE(81); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'e') ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 68: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'e') ADVANCE(93); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'f') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 69: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'f') ADVANCE(94); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'r') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 70: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'f') ADVANCE(69); - if (lookahead == 'n') ADVANCE(74); - if (lookahead == 'r') ADVANCE(92); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'h') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 71: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'h') ADVANCE(94); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'i') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 72: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'i') ADVANCE(76); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'i') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 73: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'i') ADVANCE(88); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'l') ADVANCE(90); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 74: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'l') ADVANCE(91); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(22); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'l') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 75: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'l') ADVANCE(86); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'l') ADVANCE(66); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 76: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'l') ADVANCE(67); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'm') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 77: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'm') ADVANCE(94); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'n') ADVANCE(65); + if (lookahead == 's') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 78: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'n') ADVANCE(66); - if (lookahead == 's') ADVANCE(94); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'n') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 79: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'n') ADVANCE(65); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'n') ADVANCE(91); + if (lookahead == 's') ADVANCE(60); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 80: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'n') ADVANCE(92); - if (lookahead == 's') ADVANCE(61); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'n') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 81: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'n') ADVANCE(87); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'o') ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 82: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'o') ADVANCE(89); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'o') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 83: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'o') ADVANCE(77); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'r') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 84: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'r') ADVANCE(90); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'r') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 85: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'r') ADVANCE(83); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 's') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 86: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 's') ADVANCE(68); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 't') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 87: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 't') ADVANCE(94); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 't') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 88: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 't') ADVANCE(71); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 't') ADVANCE(61); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 89: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 't') ADVANCE(62); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'u') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 90: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'u') ADVANCE(68); + if (lookahead == '.') ADVANCE(17); + if (lookahead == 'y') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 91: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (lookahead == 'y') ADVANCE(94); + if (lookahead == '.') ADVANCE(17); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(22); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 92: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); + if (lookahead == '.') ADVANCE(17); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(23); + lookahead == ' ') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 93: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); + if (lookahead == '.') ADVANCE(17); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(34); + lookahead == ' ') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 94: ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(22); + if (lookahead == '.') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 95: - ACCEPT_TOKEN(sym_variable_name); - if (lookahead == '.') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); + ACCEPT_TOKEN(anon_sym_PERCENT_RBRACE); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_PERCENT_RBRACE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(25); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(26); + ACCEPT_TOKEN(sym_unpaired_comment); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LBRACE_POUND); - END_STATE(); - case 103: - ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - END_STATE(); - case 104: - ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '#') ADVANCE(102); - END_STATE(); - case 105: - ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '{') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(105); - if (lookahead != 0) ADVANCE(103); - END_STATE(); - case 106: - ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '%') ADVANCE(98); - END_STATE(); - case 107: - ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '{') ADVANCE(106); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(107); - if (lookahead != 0) ADVANCE(103); - END_STATE(); - case 108: - ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '}') ADVANCE(109); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_POUND_RBRACE); - END_STATE(); - case 110: ACCEPT_TOKEN(sym_content); if (lookahead == '{') ADVANCE(6); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(110); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(102); + if (lookahead != 0) ADVANCE(103); END_STATE(); - case 111: + case 103: ACCEPT_TOKEN(sym_content); - if (lookahead == '{') ADVANCE(19); - if (lookahead != 0) ADVANCE(111); + if (lookahead == '{') ADVANCE(18); + if (lookahead != 0) ADVANCE(103); END_STATE(); default: return false; @@ -2530,8 +2311,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } static const TSLexerMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 20}, + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 19}, [2] = {.lex_state = 1}, [3] = {.lex_state = 1}, [4] = {.lex_state = 1}, @@ -2551,7 +2332,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 1}, [19] = {.lex_state = 1}, [20] = {.lex_state = 1}, - [21] = {.lex_state = 20}, + [21] = {.lex_state = 1}, [22] = {.lex_state = 1}, [23] = {.lex_state = 1}, [24] = {.lex_state = 1}, @@ -2560,12 +2341,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 1}, [28] = {.lex_state = 1}, [29] = {.lex_state = 1}, - [30] = {.lex_state = 20}, - [31] = {.lex_state = 20}, + [30] = {.lex_state = 1}, + [31] = {.lex_state = 1}, [32] = {.lex_state = 1}, [33] = {.lex_state = 1}, [34] = {.lex_state = 1}, - [35] = {.lex_state = 20}, + [35] = {.lex_state = 1}, [36] = {.lex_state = 1}, [37] = {.lex_state = 1}, [38] = {.lex_state = 1}, @@ -2586,11 +2367,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [53] = {.lex_state = 1}, [54] = {.lex_state = 1}, [55] = {.lex_state = 1}, - [56] = {.lex_state = 20}, - [57] = {.lex_state = 20}, - [58] = {.lex_state = 20}, + [56] = {.lex_state = 1}, + [57] = {.lex_state = 1}, + [58] = {.lex_state = 1}, [59] = {.lex_state = 1}, - [60] = {.lex_state = 20}, + [60] = {.lex_state = 1}, [61] = {.lex_state = 1}, [62] = {.lex_state = 1}, [63] = {.lex_state = 1}, @@ -2602,138 +2383,138 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 1}, [70] = {.lex_state = 1}, [71] = {.lex_state = 1}, - [72] = {.lex_state = 1}, - [73] = {.lex_state = 1}, - [74] = {.lex_state = 1}, - [75] = {.lex_state = 1}, + [72] = {.lex_state = 19}, + [73] = {.lex_state = 19}, + [74] = {.lex_state = 19}, + [75] = {.lex_state = 19}, [76] = {.lex_state = 1}, - [77] = {.lex_state = 1}, - [78] = {.lex_state = 1}, + [77] = {.lex_state = 19}, + [78] = {.lex_state = 19}, [79] = {.lex_state = 1}, [80] = {.lex_state = 1}, [81] = {.lex_state = 1}, - [82] = {.lex_state = 1}, - [83] = {.lex_state = 1}, - [84] = {.lex_state = 20}, - [85] = {.lex_state = 20}, - [86] = {.lex_state = 20}, - [87] = {.lex_state = 20}, - [88] = {.lex_state = 20}, - [89] = {.lex_state = 20}, - [90] = {.lex_state = 20}, - [91] = {.lex_state = 20}, - [92] = {.lex_state = 20}, - [93] = {.lex_state = 20}, - [94] = {.lex_state = 20}, - [95] = {.lex_state = 20}, - [96] = {.lex_state = 20}, - [97] = {.lex_state = 20}, - [98] = {.lex_state = 20}, - [99] = {.lex_state = 1}, - [100] = {.lex_state = 20}, - [101] = {.lex_state = 20}, - [102] = {.lex_state = 20}, - [103] = {.lex_state = 20}, - [104] = {.lex_state = 20}, - [105] = {.lex_state = 20}, - [106] = {.lex_state = 20}, - [107] = {.lex_state = 1}, - [108] = {.lex_state = 20}, - [109] = {.lex_state = 20}, - [110] = {.lex_state = 20}, - [111] = {.lex_state = 20}, - [112] = {.lex_state = 20}, - [113] = {.lex_state = 20}, - [114] = {.lex_state = 20}, - [115] = {.lex_state = 20}, - [116] = {.lex_state = 20}, - [117] = {.lex_state = 20}, - [118] = {.lex_state = 20}, - [119] = {.lex_state = 20}, - [120] = {.lex_state = 20}, - [121] = {.lex_state = 20}, - [122] = {.lex_state = 20}, - [123] = {.lex_state = 20}, - [124] = {.lex_state = 20}, - [125] = {.lex_state = 20}, - [126] = {.lex_state = 20}, - [127] = {.lex_state = 20}, - [128] = {.lex_state = 20}, - [129] = {.lex_state = 20}, - [130] = {.lex_state = 20}, - [131] = {.lex_state = 20}, - [132] = {.lex_state = 20}, - [133] = {.lex_state = 20}, - [134] = {.lex_state = 20}, - [135] = {.lex_state = 20}, - [136] = {.lex_state = 20}, - [137] = {.lex_state = 20}, - [138] = {.lex_state = 20}, - [139] = {.lex_state = 20}, - [140] = {.lex_state = 20}, - [141] = {.lex_state = 20}, - [142] = {.lex_state = 20}, - [143] = {.lex_state = 20}, - [144] = {.lex_state = 20}, - [145] = {.lex_state = 20}, - [146] = {.lex_state = 20}, - [147] = {.lex_state = 20}, - [148] = {.lex_state = 20}, - [149] = {.lex_state = 20}, - [150] = {.lex_state = 20}, - [151] = {.lex_state = 20}, - [152] = {.lex_state = 20}, - [153] = {.lex_state = 20}, - [154] = {.lex_state = 20}, - [155] = {.lex_state = 20}, - [156] = {.lex_state = 20}, - [157] = {.lex_state = 20}, - [158] = {.lex_state = 20}, - [159] = {.lex_state = 20}, - [160] = {.lex_state = 20}, - [161] = {.lex_state = 20}, - [162] = {.lex_state = 20}, - [163] = {.lex_state = 20}, - [164] = {.lex_state = 20}, - [165] = {.lex_state = 20}, - [166] = {.lex_state = 20}, - [167] = {.lex_state = 20}, - [168] = {.lex_state = 20}, - [169] = {.lex_state = 20}, - [170] = {.lex_state = 20}, - [171] = {.lex_state = 20}, - [172] = {.lex_state = 20}, - [173] = {.lex_state = 20}, - [174] = {.lex_state = 20}, - [175] = {.lex_state = 20}, - [176] = {.lex_state = 20}, - [177] = {.lex_state = 20}, - [178] = {.lex_state = 20}, - [179] = {.lex_state = 20}, - [180] = {.lex_state = 20}, - [181] = {.lex_state = 20}, - [182] = {.lex_state = 20}, - [183] = {.lex_state = 20}, - [184] = {.lex_state = 20}, - [185] = {.lex_state = 20}, - [186] = {.lex_state = 20}, - [187] = {.lex_state = 20}, - [188] = {.lex_state = 20}, - [189] = {.lex_state = 20}, - [190] = {.lex_state = 20}, - [191] = {.lex_state = 2}, - [192] = {.lex_state = 2}, - [193] = {.lex_state = 2}, - [194] = {.lex_state = 2}, - [195] = {.lex_state = 2}, - [196] = {.lex_state = 2}, + [82] = {.lex_state = 19}, + [83] = {.lex_state = 19}, + [84] = {.lex_state = 19}, + [85] = {.lex_state = 19}, + [86] = {.lex_state = 19}, + [87] = {.lex_state = 19}, + [88] = {.lex_state = 19}, + [89] = {.lex_state = 19}, + [90] = {.lex_state = 19}, + [91] = {.lex_state = 19}, + [92] = {.lex_state = 19}, + [93] = {.lex_state = 1}, + [94] = {.lex_state = 19}, + [95] = {.lex_state = 1}, + [96] = {.lex_state = 19}, + [97] = {.lex_state = 19}, + [98] = {.lex_state = 19}, + [99] = {.lex_state = 19}, + [100] = {.lex_state = 19}, + [101] = {.lex_state = 19}, + [102] = {.lex_state = 19}, + [103] = {.lex_state = 19}, + [104] = {.lex_state = 19}, + [105] = {.lex_state = 2}, + [106] = {.lex_state = 19}, + [107] = {.lex_state = 19}, + [108] = {.lex_state = 19}, + [109] = {.lex_state = 19}, + [110] = {.lex_state = 19}, + [111] = {.lex_state = 19}, + [112] = {.lex_state = 19}, + [113] = {.lex_state = 19}, + [114] = {.lex_state = 19}, + [115] = {.lex_state = 19}, + [116] = {.lex_state = 19}, + [117] = {.lex_state = 2}, + [118] = {.lex_state = 19}, + [119] = {.lex_state = 19}, + [120] = {.lex_state = 19}, + [121] = {.lex_state = 19}, + [122] = {.lex_state = 19}, + [123] = {.lex_state = 19}, + [124] = {.lex_state = 19}, + [125] = {.lex_state = 19}, + [126] = {.lex_state = 19}, + [127] = {.lex_state = 2}, + [128] = {.lex_state = 19}, + [129] = {.lex_state = 19}, + [130] = {.lex_state = 2}, + [131] = {.lex_state = 2}, + [132] = {.lex_state = 2}, + [133] = {.lex_state = 19}, + [134] = {.lex_state = 19}, + [135] = {.lex_state = 19}, + [136] = {.lex_state = 19}, + [137] = {.lex_state = 19}, + [138] = {.lex_state = 19}, + [139] = {.lex_state = 19}, + [140] = {.lex_state = 19}, + [141] = {.lex_state = 19}, + [142] = {.lex_state = 19}, + [143] = {.lex_state = 19}, + [144] = {.lex_state = 19}, + [145] = {.lex_state = 19}, + [146] = {.lex_state = 19}, + [147] = {.lex_state = 19}, + [148] = {.lex_state = 19}, + [149] = {.lex_state = 19}, + [150] = {.lex_state = 19}, + [151] = {.lex_state = 19}, + [152] = {.lex_state = 19}, + [153] = {.lex_state = 19}, + [154] = {.lex_state = 19}, + [155] = {.lex_state = 19}, + [156] = {.lex_state = 19}, + [157] = {.lex_state = 19}, + [158] = {.lex_state = 19}, + [159] = {.lex_state = 19}, + [160] = {.lex_state = 19}, + [161] = {.lex_state = 19}, + [162] = {.lex_state = 19}, + [163] = {.lex_state = 19}, + [164] = {.lex_state = 19}, + [165] = {.lex_state = 19}, + [166] = {.lex_state = 19}, + [167] = {.lex_state = 19}, + [168] = {.lex_state = 19}, + [169] = {.lex_state = 19}, + [170] = {.lex_state = 19}, + [171] = {.lex_state = 19}, + [172] = {.lex_state = 19}, + [173] = {.lex_state = 19}, + [174] = {.lex_state = 19}, + [175] = {.lex_state = 19}, + [176] = {.lex_state = 19}, + [177] = {.lex_state = 19}, + [178] = {.lex_state = 19}, + [179] = {.lex_state = 19}, + [180] = {.lex_state = 19}, + [181] = {.lex_state = 19}, + [182] = {.lex_state = 19}, + [183] = {.lex_state = 19}, + [184] = {.lex_state = 19}, + [185] = {.lex_state = 19}, + [186] = {.lex_state = 19}, + [187] = {.lex_state = 19}, + [188] = {.lex_state = 19}, + [189] = {.lex_state = 19}, + [190] = {.lex_state = 19}, + [191] = {.lex_state = 19}, + [192] = {.lex_state = 19}, + [193] = {.lex_state = 19}, + [194] = {.lex_state = 19}, + [195] = {.lex_state = 19}, + [196] = {.lex_state = 19}, [197] = {.lex_state = 2}, [198] = {.lex_state = 2}, - [199] = {.lex_state = 2}, + [199] = {.lex_state = 1}, [200] = {.lex_state = 2}, [201] = {.lex_state = 2}, [202] = {.lex_state = 2}, - [203] = {.lex_state = 1}, + [203] = {.lex_state = 2}, [204] = {.lex_state = 2}, [205] = {.lex_state = 2}, [206] = {.lex_state = 2}, @@ -2802,236 +2583,146 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 2}, [270] = {.lex_state = 2}, [271] = {.lex_state = 2}, - [272] = {.lex_state = 7}, - [273] = {.lex_state = 7}, - [274] = {.lex_state = 7}, - [275] = {.lex_state = 7}, - [276] = {.lex_state = 7}, - [277] = {.lex_state = 7}, - [278] = {.lex_state = 13}, - [279] = {.lex_state = 20}, - [280] = {.lex_state = 20}, - [281] = {.lex_state = 20}, - [282] = {.lex_state = 20}, - [283] = {.lex_state = 3}, - [284] = {.lex_state = 20}, - [285] = {.lex_state = 20}, - [286] = {.lex_state = 2}, - [287] = {.lex_state = 13}, - [288] = {.lex_state = 20}, - [289] = {.lex_state = 20}, - [290] = {.lex_state = 20}, - [291] = {.lex_state = 13}, - [292] = {.lex_state = 20}, - [293] = {.lex_state = 13}, - [294] = {.lex_state = 20}, - [295] = {.lex_state = 20}, - [296] = {.lex_state = 20}, - [297] = {.lex_state = 20}, - [298] = {.lex_state = 20}, - [299] = {.lex_state = 20}, - [300] = {.lex_state = 20}, - [301] = {.lex_state = 3}, - [302] = {.lex_state = 20}, - [303] = {.lex_state = 13}, - [304] = {.lex_state = 13}, - [305] = {.lex_state = 13}, - [306] = {.lex_state = 20}, - [307] = {.lex_state = 20}, - [308] = {.lex_state = 20}, - [309] = {.lex_state = 20}, - [310] = {.lex_state = 20}, - [311] = {.lex_state = 20}, - [312] = {.lex_state = 20}, - [313] = {.lex_state = 20}, - [314] = {.lex_state = 13}, - [315] = {.lex_state = 20}, - [316] = {.lex_state = 20}, - [317] = {.lex_state = 20}, - [318] = {.lex_state = 20}, - [319] = {.lex_state = 13}, - [320] = {.lex_state = 13}, - [321] = {.lex_state = 13}, - [322] = {.lex_state = 13}, - [323] = {.lex_state = 0}, - [324] = {.lex_state = 20}, - [325] = {.lex_state = 20}, - [326] = {.lex_state = 20}, - [327] = {.lex_state = 20}, - [328] = {.lex_state = 20}, - [329] = {.lex_state = 0}, - [330] = {.lex_state = 20}, - [331] = {.lex_state = 0}, - [332] = {.lex_state = 7}, - [333] = {.lex_state = 0}, - [334] = {.lex_state = 7}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 20}, - [337] = {.lex_state = 7}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 20}, - [340] = {.lex_state = 20}, - [341] = {.lex_state = 0}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 20}, - [344] = {.lex_state = 20}, - [345] = {.lex_state = 20}, - [346] = {.lex_state = 20}, - [347] = {.lex_state = 20}, + [272] = {.lex_state = 19}, + [273] = {.lex_state = 19}, + [274] = {.lex_state = 3}, + [275] = {.lex_state = 19}, + [276] = {.lex_state = 19}, + [277] = {.lex_state = 19}, + [278] = {.lex_state = 19}, + [279] = {.lex_state = 2}, + [280] = {.lex_state = 19}, + [281] = {.lex_state = 19}, + [282] = {.lex_state = 19}, + [283] = {.lex_state = 19}, + [284] = {.lex_state = 19}, + [285] = {.lex_state = 19}, + [286] = {.lex_state = 19}, + [287] = {.lex_state = 19}, + [288] = {.lex_state = 19}, + [289] = {.lex_state = 19}, + [290] = {.lex_state = 19}, + [291] = {.lex_state = 3}, + [292] = {.lex_state = 19}, + [293] = {.lex_state = 19}, + [294] = {.lex_state = 19}, + [295] = {.lex_state = 19}, + [296] = {.lex_state = 19}, + [297] = {.lex_state = 19}, + [298] = {.lex_state = 0}, + [299] = {.lex_state = 19}, + [300] = {.lex_state = 19}, + [301] = {.lex_state = 19}, + [302] = {.lex_state = 19}, + [303] = {.lex_state = 19}, + [304] = {.lex_state = 19}, + [305] = {.lex_state = 19}, + [306] = {.lex_state = 19}, + [307] = {.lex_state = 19}, + [308] = {.lex_state = 19}, + [309] = {.lex_state = 19}, + [310] = {.lex_state = 19}, + [311] = {.lex_state = 19}, + [312] = {.lex_state = 19}, + [313] = {.lex_state = 19}, + [314] = {.lex_state = 19}, + [315] = {.lex_state = 19}, + [316] = {.lex_state = 19}, + [317] = {.lex_state = 19}, + [318] = {.lex_state = 0}, + [319] = {.lex_state = 19}, + [320] = {.lex_state = 0}, + [321] = {.lex_state = 19}, + [322] = {.lex_state = 19}, + [323] = {.lex_state = 19}, + [324] = {.lex_state = 0}, + [325] = {.lex_state = 0}, + [326] = {.lex_state = 0}, + [327] = {.lex_state = 19}, + [328] = {.lex_state = 19}, + [329] = {.lex_state = 19}, + [330] = {.lex_state = 19}, + [331] = {.lex_state = 19}, + [332] = {.lex_state = 2}, + [333] = {.lex_state = 8}, + [334] = {.lex_state = 0}, + [335] = {.lex_state = 4}, + [336] = {.lex_state = 0}, + [337] = {.lex_state = 4}, + [338] = {.lex_state = 2}, + [339] = {.lex_state = 4}, + [340] = {.lex_state = 8}, + [341] = {.lex_state = 4}, + [342] = {.lex_state = 2}, + [343] = {.lex_state = 2}, + [344] = {.lex_state = 8}, + [345] = {.lex_state = 2}, + [346] = {.lex_state = 8}, + [347] = {.lex_state = 2}, [348] = {.lex_state = 0}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 20}, - [351] = {.lex_state = 20}, - [352] = {.lex_state = 20}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 20}, - [355] = {.lex_state = 20}, - [356] = {.lex_state = 20}, - [357] = {.lex_state = 20}, - [358] = {.lex_state = 20}, - [359] = {.lex_state = 20}, - [360] = {.lex_state = 20}, - [361] = {.lex_state = 20}, + [349] = {.lex_state = 2}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 2}, + [352] = {.lex_state = 4}, + [353] = {.lex_state = 8}, + [354] = {.lex_state = 0}, + [355] = {.lex_state = 2}, + [356] = {.lex_state = 2}, + [357] = {.lex_state = 2}, + [358] = {.lex_state = 4}, + [359] = {.lex_state = 8}, + [360] = {.lex_state = 2}, + [361] = {.lex_state = 0}, [362] = {.lex_state = 0}, - [363] = {.lex_state = 20}, - [364] = {.lex_state = 20}, - [365] = {.lex_state = 20}, - [366] = {.lex_state = 20}, - [367] = {.lex_state = 20}, - [368] = {.lex_state = 20}, - [369] = {.lex_state = 20}, - [370] = {.lex_state = 20}, - [371] = {.lex_state = 20}, - [372] = {.lex_state = 20}, - [373] = {.lex_state = 0}, - [374] = {.lex_state = 8}, + [363] = {.lex_state = 0, .external_lex_state = 1}, + [364] = {.lex_state = 0}, + [365] = {.lex_state = 0}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 0}, + [370] = {.lex_state = 0}, + [371] = {.lex_state = 2}, + [372] = {.lex_state = 0}, + [373] = {.lex_state = 2}, + [374] = {.lex_state = 2}, [375] = {.lex_state = 0}, [376] = {.lex_state = 0}, [377] = {.lex_state = 2}, - [378] = {.lex_state = 4}, - [379] = {.lex_state = 2}, + [378] = {.lex_state = 0}, + [379] = {.lex_state = 0}, [380] = {.lex_state = 0}, [381] = {.lex_state = 0}, - [382] = {.lex_state = 2}, - [383] = {.lex_state = 13}, + [382] = {.lex_state = 0}, + [383] = {.lex_state = 0}, [384] = {.lex_state = 0}, [385] = {.lex_state = 0}, - [386] = {.lex_state = 2}, - [387] = {.lex_state = 13}, - [388] = {.lex_state = 2}, + [386] = {.lex_state = 0, .external_lex_state = 1}, + [387] = {.lex_state = 0}, + [388] = {.lex_state = 0}, [389] = {.lex_state = 0}, [390] = {.lex_state = 0}, - [391] = {.lex_state = 2}, + [391] = {.lex_state = 0}, [392] = {.lex_state = 0}, - [393] = {.lex_state = 2}, + [393] = {.lex_state = 0}, [394] = {.lex_state = 0}, [395] = {.lex_state = 0}, - [396] = {.lex_state = 2}, - [397] = {.lex_state = 7}, + [396] = {.lex_state = 0}, + [397] = {.lex_state = 0}, [398] = {.lex_state = 0}, - [399] = {.lex_state = 7}, + [399] = {.lex_state = 0}, [400] = {.lex_state = 0}, [401] = {.lex_state = 0}, - [402] = {.lex_state = 13}, + [402] = {.lex_state = 0}, [403] = {.lex_state = 0}, [404] = {.lex_state = 0}, - [405] = {.lex_state = 0}, - [406] = {.lex_state = 4}, - [407] = {.lex_state = 8}, - [408] = {.lex_state = 4}, - [409] = {.lex_state = 4}, - [410] = {.lex_state = 7}, - [411] = {.lex_state = 2}, - [412] = {.lex_state = 8}, - [413] = {.lex_state = 4}, - [414] = {.lex_state = 8}, - [415] = {.lex_state = 0}, - [416] = {.lex_state = 8}, - [417] = {.lex_state = 2}, - [418] = {.lex_state = 2}, - [419] = {.lex_state = 2}, - [420] = {.lex_state = 13}, - [421] = {.lex_state = 2}, - [422] = {.lex_state = 2}, - [423] = {.lex_state = 2}, - [424] = {.lex_state = 2}, - [425] = {.lex_state = 13}, - [426] = {.lex_state = 2}, - [427] = {.lex_state = 13}, - [428] = {.lex_state = 13}, - [429] = {.lex_state = 8}, - [430] = {.lex_state = 2}, - [431] = {.lex_state = 13}, - [432] = {.lex_state = 4}, - [433] = {.lex_state = 13}, - [434] = {.lex_state = 2}, - [435] = {.lex_state = 2}, - [436] = {.lex_state = 2}, - [437] = {.lex_state = 2}, - [438] = {.lex_state = 2}, - [439] = {.lex_state = 2}, - [440] = {.lex_state = 2}, - [441] = {.lex_state = 2}, - [442] = {.lex_state = 2}, - [443] = {.lex_state = 2}, - [444] = {.lex_state = 2}, - [445] = {.lex_state = 2}, - [446] = {.lex_state = 0}, - [447] = {.lex_state = 0}, - [448] = {.lex_state = 2}, - [449] = {.lex_state = 0}, - [450] = {.lex_state = 0}, - [451] = {.lex_state = 0}, - [452] = {.lex_state = 0}, - [453] = {.lex_state = 0}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 0}, - [456] = {.lex_state = 0}, - [457] = {.lex_state = 0}, - [458] = {.lex_state = 0}, - [459] = {.lex_state = 2}, - [460] = {.lex_state = 0}, - [461] = {.lex_state = 0}, - [462] = {.lex_state = 0}, - [463] = {.lex_state = 0}, - [464] = {.lex_state = 0}, - [465] = {.lex_state = 0}, - [466] = {.lex_state = 0}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 0}, - [470] = {.lex_state = 2}, - [471] = {.lex_state = 0}, - [472] = {.lex_state = 0}, - [473] = {.lex_state = 0}, - [474] = {.lex_state = 0}, - [475] = {.lex_state = 0}, - [476] = {.lex_state = 0}, - [477] = {.lex_state = 0}, - [478] = {.lex_state = 0}, - [479] = {.lex_state = 0}, - [480] = {.lex_state = 0}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 0}, - [483] = {.lex_state = 0}, - [484] = {.lex_state = 0}, - [485] = {.lex_state = 0}, - [486] = {.lex_state = 0}, - [487] = {.lex_state = 0}, - [488] = {.lex_state = 0}, - [489] = {.lex_state = 0}, - [490] = {.lex_state = 0}, - [491] = {.lex_state = 0}, - [492] = {.lex_state = 0}, - [493] = {.lex_state = 0}, - [494] = {.lex_state = 0}, - [495] = {.lex_state = 0}, - [496] = {.lex_state = 0}, - [497] = {.lex_state = 0}, - [498] = {.lex_state = 0}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 0}, - [501] = {.lex_state = 0}, + [405] = {.lex_state = 0, .external_lex_state = 1}, + [406] = {.lex_state = 0}, + [407] = {.lex_state = 0, .external_lex_state = 1}, + [408] = {.lex_state = 2}, + [409] = {.lex_state = 0}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -3081,29 +2772,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_endfilter] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_LBRACE_POUND] = ACTIONS(1), - [anon_sym_POUND_RBRACE] = ACTIONS(1), + [sym_unpaired_comment] = ACTIONS(1), [anon_sym_comment] = ACTIONS(1), [anon_sym_endcomment] = ACTIONS(1), + [sym__paired_comment_content] = ACTIONS(1), }, [STATE(1)] = { - [sym_template] = STATE(477), - [sym__node] = STATE(86), - [sym__expression] = STATE(86), - [sym__statement] = STATE(86), - [sym_paired_statement] = STATE(86), - [sym_if_statement] = STATE(86), - [sym_for_statement] = STATE(86), - [sym_filter_statement] = STATE(86), - [sym_unpaired_statement] = STATE(86), - [sym__comment] = STATE(86), - [sym_unpaired_comment] = STATE(86), - [sym_paired_comment] = STATE(86), - [aux_sym_template_repeat1] = STATE(86), + [sym_template] = STATE(393), + [sym__node] = STATE(89), + [sym__expression] = STATE(89), + [sym__statement] = STATE(89), + [sym_paired_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_filter_statement] = STATE(89), + [sym_unpaired_statement] = STATE(89), + [sym__comment] = STATE(89), + [sym_paired_comment] = STATE(89), + [aux_sym_template_repeat1] = STATE(89), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACE_LBRACE] = ACTIONS(5), [anon_sym_LBRACE_PERCENT] = ACTIONS(7), - [anon_sym_LBRACE_POUND] = ACTIONS(9), + [sym_unpaired_comment] = ACTIONS(9), [sym_content] = ACTIONS(11), }, }; @@ -3196,10 +2886,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3228,7 +2918,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(18), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3257,7 +2947,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(19), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3286,7 +2976,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(20), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3312,10 +3002,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(22), 2, + STATE(21), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3341,10 +3031,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(23), 2, + STATE(22), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3361,7 +3051,7 @@ static const uint16_t ts_small_parse_table[] = { [315] = 4, ACTIONS(58), 1, anon_sym_PIPE, - STATE(26), 1, + STATE(25), 1, aux_sym_string_repeat3, ACTIONS(56), 4, anon_sym_LT, @@ -3385,7 +3075,7 @@ static const uint16_t ts_small_parse_table[] = { [343] = 4, ACTIONS(58), 1, anon_sym_PIPE, - STATE(28), 1, + STATE(27), 1, aux_sym_string_repeat3, ACTIONS(62), 4, anon_sym_LT, @@ -3418,10 +3108,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3447,10 +3137,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3476,10 +3166,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3505,10 +3195,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3534,10 +3224,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3563,10 +3253,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3592,10 +3282,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3621,10 +3311,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3638,50 +3328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [675] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(82), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(86), 1, - sym_content, - STATE(142), 1, - sym_elif_statement, - STATE(159), 1, - sym_else_statement, - STATE(348), 1, - aux_sym_if_statement_repeat1, - STATE(30), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [711] = 9, + [675] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(88), 1, + ACTIONS(80), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3695,22 +3357,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [749] = 9, + [713] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(90), 1, + ACTIONS(82), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3724,13 +3386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [787] = 2, - ACTIONS(94), 4, + [751] = 2, + ACTIONS(86), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(92), 15, + ACTIONS(84), 15, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -3746,15 +3408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [811] = 3, - ACTIONS(100), 1, + [775] = 3, + ACTIONS(92), 1, anon_sym_COLON, - ACTIONS(98), 4, + ACTIONS(90), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(96), 14, + ACTIONS(88), 14, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -3769,17 +3431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [837] = 4, + [801] = 4, ACTIONS(58), 1, anon_sym_PIPE, - STATE(28), 1, + STATE(27), 1, aux_sym_string_repeat3, - ACTIONS(104), 4, + ACTIONS(96), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(102), 13, + ACTIONS(94), 13, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -3793,17 +3455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [865] = 4, + [829] = 4, ACTIONS(58), 1, anon_sym_PIPE, - STATE(32), 1, + STATE(29), 1, aux_sym_string_repeat3, - ACTIONS(104), 4, + ACTIONS(96), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(102), 13, + ACTIONS(94), 13, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -3817,17 +3479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [893] = 4, - ACTIONS(110), 1, + [857] = 4, + ACTIONS(102), 1, anon_sym_PIPE, - STATE(28), 1, + STATE(27), 1, aux_sym_string_repeat3, - ACTIONS(108), 4, + ACTIONS(100), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(106), 13, + ACTIONS(98), 13, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -3841,102 +3503,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [921] = 9, - ACTIONS(122), 1, + [885] = 9, + ACTIONS(114), 1, anon_sym_SQUOTE, - ACTIONS(125), 1, + ACTIONS(117), 1, anon_sym_DQUOTE, - ACTIONS(128), 1, + ACTIONS(120), 1, sym_variable_name, - ACTIONS(131), 1, + ACTIONS(123), 1, anon_sym_PERCENT_RBRACE, - ACTIONS(119), 2, + ACTIONS(111), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, - ACTIONS(113), 4, + ACTIONS(105), 4, sym_keyword, sym_keyword_operator, sym_number, sym_boolean, - ACTIONS(116), 4, + ACTIONS(108), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [959] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(133), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(135), 1, - sym_content, - STATE(110), 1, - sym_else_statement, - STATE(142), 1, - sym_elif_statement, - STATE(329), 1, - aux_sym_if_statement_repeat1, - STATE(132), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [995] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(133), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(137), 1, - sym_content, - STATE(110), 1, - sym_else_statement, - STATE(142), 1, - sym_elif_statement, - STATE(329), 1, - aux_sym_if_statement_repeat1, - STATE(35), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [1031] = 4, + [923] = 4, ACTIONS(58), 1, anon_sym_PIPE, - STATE(28), 1, + STATE(27), 1, aux_sym_string_repeat3, - ACTIONS(141), 4, + ACTIONS(127), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(139), 13, + ACTIONS(125), 13, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -3950,22 +3556,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [1059] = 9, + [951] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(143), 1, + ACTIONS(129), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(38), 2, + STATE(34), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -3979,22 +3585,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1097] = 9, + [989] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(145), 1, + ACTIONS(131), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(40), 2, + STATE(36), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4008,42 +3614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1135] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(147), 1, - anon_sym_LBRACE_PERCENT, - STATE(120), 1, - sym_else_statement, - STATE(142), 1, - sym_elif_statement, - STATE(349), 1, - aux_sym_if_statement_repeat1, - STATE(132), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [1171] = 9, + [1027] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(149), 1, + ACTIONS(133), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, @@ -4051,7 +3629,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4065,14 +3643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1209] = 9, + [1065] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(151), 1, + ACTIONS(135), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, @@ -4080,7 +3658,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(13), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4094,22 +3672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1247] = 9, + [1103] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(153), 1, + ACTIONS(137), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4123,17 +3701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1285] = 4, + [1141] = 4, ACTIONS(58), 1, anon_sym_PIPE, STATE(12), 1, aux_sym_string_repeat3, - ACTIONS(157), 4, + ACTIONS(141), 4, anon_sym_LT, anon_sym_GT, sym_variable_name, anon_sym_EQ, - ACTIONS(155), 13, + ACTIONS(139), 13, sym_keyword, sym_keyword_operator, anon_sym_EQ_EQ, @@ -4147,22 +3725,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [1313] = 9, + [1169] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(159), 1, + ACTIONS(143), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4176,14 +3754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1351] = 9, + [1207] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(161), 1, + ACTIONS(145), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, @@ -4191,7 +3769,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(14), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4205,14 +3783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1389] = 9, + [1245] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(163), 1, + ACTIONS(147), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, @@ -4220,7 +3798,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(15), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4234,22 +3812,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1427] = 9, + [1283] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(165), 1, + ACTIONS(149), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4263,22 +3841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1465] = 9, + [1321] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(165), 1, + ACTIONS(149), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(47), 2, + STATE(43), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4292,7 +3870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1503] = 2, + [1359] = 2, ACTIONS(25), 4, anon_sym_LT, anon_sym_GT, @@ -4314,14 +3892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_PERCENT_RBRACE, anon_sym_COMMA, - [1527] = 9, + [1383] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(167), 1, + ACTIONS(151), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, @@ -4329,7 +3907,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(16), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4343,22 +3921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1565] = 9, + [1421] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(169), 1, + ACTIONS(153), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4372,22 +3950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1603] = 9, + [1459] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(171), 1, + ACTIONS(155), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(49), 2, + STATE(45), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4401,22 +3979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1641] = 9, + [1497] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(173), 1, + ACTIONS(157), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4430,22 +4008,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1679] = 9, + [1535] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(175), 1, + ACTIONS(159), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(51), 2, + STATE(47), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4459,22 +4037,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1717] = 9, + [1573] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(177), 1, + ACTIONS(161), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4488,22 +4066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1755] = 9, + [1611] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(177), 1, + ACTIONS(161), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(53), 2, + STATE(49), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4517,22 +4095,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1793] = 9, + [1649] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(179), 1, + ACTIONS(163), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4546,22 +4124,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1831] = 9, + [1687] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(179), 1, + ACTIONS(163), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(55), 2, + STATE(51), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4575,22 +4153,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1869] = 9, + [1725] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(181), 1, + ACTIONS(165), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4604,98 +4182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [1907] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(183), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(185), 1, - sym_content, - STATE(142), 1, - sym_elif_statement, - STATE(157), 1, - sym_else_statement, - STATE(333), 1, - aux_sym_if_statement_repeat1, - STATE(57), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [1943] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(187), 1, - anon_sym_LBRACE_PERCENT, - STATE(142), 1, - sym_elif_statement, - STATE(169), 1, - sym_else_statement, - STATE(323), 1, - aux_sym_if_statement_repeat1, - STATE(132), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [1979] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(187), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(189), 1, - sym_content, - STATE(142), 1, - sym_elif_statement, - STATE(169), 1, - sym_else_statement, - STATE(323), 1, - aux_sym_if_statement_repeat1, - STATE(60), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [2015] = 9, + [1763] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(191), 1, + ACTIONS(167), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, @@ -4703,7 +4197,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(17), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4717,50 +4211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2053] = 8, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(193), 1, - anon_sym_LBRACE_PERCENT, - STATE(142), 1, - sym_elif_statement, - STATE(176), 1, - sym_else_statement, - STATE(353), 1, - aux_sym_if_statement_repeat1, - STATE(132), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [2089] = 9, + [1801] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(195), 1, + ACTIONS(169), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(70), 2, + STATE(62), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4774,22 +4240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2127] = 9, + [1839] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(197), 1, + ACTIONS(171), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(71), 2, + STATE(63), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4803,22 +4269,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2165] = 9, + [1877] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(199), 1, + ACTIONS(173), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(72), 2, + STATE(64), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4832,22 +4298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2203] = 9, + [1915] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(201), 1, + ACTIONS(175), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(73), 2, + STATE(65), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4861,22 +4327,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2241] = 9, + [1953] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(203), 1, + ACTIONS(177), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(74), 2, + STATE(66), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4890,22 +4356,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2279] = 9, + [1991] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(205), 1, + ACTIONS(179), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(75), 2, + STATE(67), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4919,22 +4385,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2317] = 9, + [2029] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(207), 1, + ACTIONS(181), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(76), 2, + STATE(68), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4948,22 +4414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2355] = 9, + [2067] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(209), 1, + ACTIONS(183), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(77), 2, + STATE(69), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -4977,22 +4443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2393] = 9, + [2105] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(211), 1, + ACTIONS(185), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(78), 2, + STATE(70), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5006,22 +4472,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2431] = 9, + [2143] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(213), 1, + ACTIONS(187), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5035,22 +4501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2469] = 9, + [2181] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(215), 1, + ACTIONS(189), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5064,22 +4530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2507] = 9, + [2219] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(217), 1, + ACTIONS(191), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5093,22 +4559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2545] = 9, + [2257] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(219), 1, + ACTIONS(193), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5122,22 +4588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2583] = 9, + [2295] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(221), 1, + ACTIONS(195), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5151,22 +4617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2621] = 9, + [2333] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(223), 1, + ACTIONS(197), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5180,22 +4646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2659] = 9, + [2371] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(225), 1, + ACTIONS(199), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5209,22 +4675,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2697] = 9, + [2409] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(227), 1, + ACTIONS(201), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5238,22 +4704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2735] = 9, + [2447] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(229), 1, + ACTIONS(203), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(29), 2, + STATE(28), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5267,22 +4733,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2773] = 9, + [2485] = 9, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, ACTIONS(40), 1, sym_variable_name, - ACTIONS(153), 1, + ACTIONS(137), 1, anon_sym_PERCENT_RBRACE, ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - STATE(43), 2, + STATE(39), 2, sym__attribute, aux_sym_paired_statement_repeat1, - STATE(99), 3, + STATE(93), 3, sym_operator, sym_string, sym_variable, @@ -5296,102 +4762,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2811] = 2, - ACTIONS(233), 4, - anon_sym_LT, - anon_sym_GT, - sym_variable_name, - anon_sym_EQ, - ACTIONS(231), 14, - sym_keyword, - sym_keyword_operator, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_number, - sym_boolean, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_RBRACE_RBRACE, - anon_sym_PERCENT_RBRACE, - anon_sym_COMMA, - [2834] = 2, - ACTIONS(237), 4, - anon_sym_LT, - anon_sym_GT, - sym_variable_name, - anon_sym_EQ, - ACTIONS(235), 14, - sym_keyword, - sym_keyword_operator, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_number, - sym_boolean, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_RBRACE_RBRACE, - anon_sym_PERCENT_RBRACE, - anon_sym_COMMA, - [2857] = 2, - ACTIONS(108), 4, - anon_sym_LT, - anon_sym_GT, - sym_variable_name, - anon_sym_EQ, - ACTIONS(106), 14, - sym_keyword, - sym_keyword_operator, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_number, - sym_boolean, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_RBRACE_RBRACE, - anon_sym_PERCENT_RBRACE, - anon_sym_COMMA, - [2880] = 2, - ACTIONS(241), 4, - anon_sym_LT, - anon_sym_GT, - sym_variable_name, - anon_sym_EQ, - ACTIONS(239), 14, - sym_keyword, - sym_keyword_operator, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_number, - sym_boolean, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_RBRACE_RBRACE, - anon_sym_PERCENT_RBRACE, - anon_sym_COMMA, - [2903] = 6, - ACTIONS(80), 1, + [2523] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(243), 1, + ACTIONS(207), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(245), 1, + ACTIONS(209), 1, + sym_unpaired_comment, + ACTIONS(211), 1, sym_content, - STATE(171), 1, - sym_empty_statement, - STATE(85), 12, + STATE(106), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(326), 1, + aux_sym_if_statement_repeat1, + STATE(83), 11, sym__node, sym__expression, sym__statement, @@ -5401,21 +4787,24 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [2933] = 6, - ACTIONS(80), 1, + [2558] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(247), 1, + ACTIONS(213), 1, anon_sym_LBRACE_PERCENT, - STATE(178), 1, - sym_empty_statement, - STATE(132), 12, + ACTIONS(215), 1, + sym_unpaired_comment, + ACTIONS(217), 1, + sym_content, + STATE(140), 1, + sym_elif_statement, + STATE(155), 1, + sym_else_statement, + STATE(318), 1, + aux_sym_if_statement_repeat1, + STATE(74), 11, sym__node, sym__expression, sym__statement, @@ -5425,21 +4814,24 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [2963] = 6, - ACTIONS(5), 1, + [2593] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(7), 1, + ACTIONS(219), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(9), 1, - anon_sym_LBRACE_POUND, - ACTIONS(249), 1, - ts_builtin_sym_end, - ACTIONS(251), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(91), 12, + STATE(140), 1, + sym_elif_statement, + STATE(168), 1, + sym_else_statement, + STATE(324), 1, + aux_sym_if_statement_repeat1, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5449,21 +4841,24 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [2993] = 6, - ACTIONS(80), 1, + [2628] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(253), 1, + ACTIONS(219), 1, anon_sym_LBRACE_PERCENT, - STATE(112), 1, - sym_empty_statement, - STATE(132), 12, + ACTIONS(225), 1, + sym_unpaired_comment, + ACTIONS(227), 1, + sym_content, + STATE(140), 1, + sym_elif_statement, + STATE(168), 1, + sym_else_statement, + STATE(324), 1, + aux_sym_if_statement_repeat1, + STATE(77), 11, sym__node, sym__expression, sym__statement, @@ -5473,21 +4868,45 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3023] = 6, - ACTIONS(80), 1, + [2663] = 2, + ACTIONS(231), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(229), 14, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [2686] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(253), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(255), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(112), 1, - sym_empty_statement, - STATE(89), 12, + ACTIONS(233), 1, + anon_sym_LBRACE_PERCENT, + STATE(140), 1, + sym_elif_statement, + STATE(176), 1, + sym_else_statement, + STATE(298), 1, + aux_sym_if_statement_repeat1, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5497,21 +4916,24 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3053] = 6, - ACTIONS(80), 1, + [2721] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(257), 1, + ACTIONS(235), 1, anon_sym_LBRACE_PERCENT, - STATE(122), 1, - sym_empty_statement, - STATE(132), 12, + ACTIONS(237), 1, + sym_unpaired_comment, + ACTIONS(239), 1, + sym_content, + STATE(110), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(325), 1, + aux_sym_if_statement_repeat1, + STATE(82), 11, sym__node, sym__expression, sym__statement, @@ -5521,21 +4943,87 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3083] = 6, - ACTIONS(80), 1, + [2756] = 2, + ACTIONS(243), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(241), 14, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [2779] = 2, + ACTIONS(100), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(98), 14, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [2802] = 2, + ACTIONS(247), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(245), 14, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [2825] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(259), 1, + ACTIONS(207), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(261), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(95), 1, - sym_empty_statement, - STATE(87), 12, + STATE(106), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(326), 1, + aux_sym_if_statement_repeat1, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5545,21 +5033,24 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3113] = 6, - ACTIONS(263), 1, - ts_builtin_sym_end, - ACTIONS(265), 1, + [2860] = 8, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(268), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(271), 1, - anon_sym_LBRACE_POUND, - ACTIONS(274), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(91), 12, + ACTIONS(249), 1, + anon_sym_LBRACE_PERCENT, + STATE(116), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(320), 1, + aux_sym_if_statement_repeat1, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5569,21 +5060,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3143] = 6, - ACTIONS(80), 1, + [2895] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(277), 1, + ACTIONS(251), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(279), 1, + ACTIONS(253), 1, + sym_unpaired_comment, + ACTIONS(255), 1, sym_content, - STATE(158), 1, + STATE(171), 1, sym_empty_statement, - STATE(93), 12, + STATE(85), 11, sym__node, sym__expression, sym__statement, @@ -5593,21 +5083,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3173] = 6, - ACTIONS(80), 1, + [2924] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(243), 1, + ACTIONS(257), 1, anon_sym_LBRACE_PERCENT, - STATE(171), 1, + STATE(178), 1, sym_empty_statement, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5617,19 +5106,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3203] = 5, - ACTIONS(80), 1, + [2953] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(281), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(283), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(153), 12, + ACTIONS(259), 1, + anon_sym_LBRACE_PERCENT, + STATE(109), 1, + sym_empty_statement, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5639,19 +5129,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3230] = 5, - ACTIONS(80), 1, + [2982] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(285), 1, + ACTIONS(259), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(287), 1, + ACTIONS(261), 1, + sym_unpaired_comment, + ACTIONS(263), 1, sym_content, - STATE(111), 12, + STATE(109), 1, + sym_empty_statement, + STATE(88), 11, sym__node, sym__expression, sym__statement, @@ -5661,19 +5152,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3257] = 5, - ACTIONS(80), 1, + [3011] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(289), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(291), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(104), 12, + ACTIONS(265), 1, + anon_sym_LBRACE_PERCENT, + STATE(120), 1, + sym_empty_statement, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5683,19 +5175,43 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3284] = 5, - ACTIONS(80), 1, + [3040] = 6, + ACTIONS(5), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(7), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(267), 1, + ts_builtin_sym_end, + ACTIONS(269), 1, + sym_unpaired_comment, + ACTIONS(271), 1, sym_content, - ACTIONS(293), 1, + STATE(90), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3069] = 6, + ACTIONS(273), 1, + ts_builtin_sym_end, + ACTIONS(275), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(278), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(281), 1, + sym_unpaired_comment, + ACTIONS(284), 1, + sym_content, + STATE(90), 11, sym__node, sym__expression, sym__statement, @@ -5705,19 +5221,43 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3098] = 6, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(289), 1, sym_unpaired_comment, + ACTIONS(291), 1, + sym_content, + STATE(123), 1, + sym_empty_statement, + STATE(86), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, sym_paired_comment, aux_sym_template_repeat1, - [3311] = 5, - ACTIONS(80), 1, + [3127] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(295), 1, + ACTIONS(293), 1, anon_sym_LBRACE_PERCENT, + ACTIONS(295), 1, + sym_unpaired_comment, ACTIONS(297), 1, sym_content, - STATE(114), 12, + STATE(157), 1, + sym_empty_statement, + STATE(94), 11, sym__node, sym__expression, sym__statement, @@ -5727,10 +5267,9 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3338] = 4, + [3156] = 4, ACTIONS(303), 1, anon_sym_COMMA, ACTIONS(305), 1, @@ -5751,16 +5290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_PERCENT_RBRACE, - [3363] = 5, - ACTIONS(80), 1, + [3181] = 6, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(307), 1, + ACTIONS(251), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(171), 1, + sym_empty_statement, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5770,19 +5311,37 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3390] = 5, - ACTIONS(80), 1, + [3210] = 2, + ACTIONS(309), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(307), 12, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [3231] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(309), 1, + ACTIONS(311), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(313), 1, + sym_unpaired_comment, + ACTIONS(315), 1, + sym_content, + STATE(151), 11, sym__node, sym__expression, sym__statement, @@ -5792,19 +5351,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3417] = 5, - ACTIONS(80), 1, + [3257] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(311), 1, + ACTIONS(317), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5814,19 +5372,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3444] = 5, - ACTIONS(80), 1, + [3283] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(313), 1, + ACTIONS(319), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5836,19 +5393,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3471] = 5, - ACTIONS(80), 1, + [3309] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(315), 1, + ACTIONS(321), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5858,19 +5414,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3498] = 5, - ACTIONS(80), 1, + [3335] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(317), 1, + ACTIONS(323), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5880,19 +5435,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3525] = 5, - ACTIONS(80), 1, + [3361] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(319), 1, + ACTIONS(325), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5902,38 +5456,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3552] = 2, - ACTIONS(323), 4, - anon_sym_LT, - anon_sym_GT, - sym_variable_name, - anon_sym_EQ, - ACTIONS(321), 12, - sym_keyword, - sym_keyword_operator, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_number, - sym_boolean, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - anon_sym_COMMA, - [3573] = 5, - ACTIONS(80), 1, + [3387] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(325), 1, + ACTIONS(327), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(329), 1, + sym_unpaired_comment, + ACTIONS(331), 1, + sym_content, + STATE(186), 11, sym__node, sym__expression, sym__statement, @@ -5943,19 +5477,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3600] = 5, - ACTIONS(80), 1, + [3413] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(327), 1, + ACTIONS(333), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5965,19 +5498,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3627] = 5, - ACTIONS(80), 1, + [3439] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(327), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(329), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(119), 12, + ACTIONS(335), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -5987,19 +5519,49 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3654] = 5, - ACTIONS(80), 1, + [3465] = 15, + ACTIONS(337), 1, + sym__identifier, + ACTIONS(339), 1, + anon_sym_autoescape, + ACTIONS(341), 1, + anon_sym_block, + ACTIONS(343), 1, + anon_sym_blocktranslate, + ACTIONS(345), 1, + anon_sym_ifchanged, + ACTIONS(347), 1, + anon_sym_spaceless, + ACTIONS(349), 1, + anon_sym_verbatim, + ACTIONS(351), 1, + anon_sym_with, + ACTIONS(353), 1, + anon_sym_if, + ACTIONS(355), 1, + anon_sym_endif, + ACTIONS(357), 1, + anon_sym_elif, + ACTIONS(359), 1, + anon_sym_else, + ACTIONS(361), 1, + anon_sym_for, + ACTIONS(363), 1, + anon_sym_filter, + ACTIONS(365), 1, + anon_sym_comment, + [3511] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(331), 1, + ACTIONS(335), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(367), 1, + sym_unpaired_comment, + ACTIONS(369), 1, + sym_content, + STATE(115), 11, sym__node, sym__expression, sym__statement, @@ -6009,19 +5571,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3681] = 5, - ACTIONS(80), 1, + [3537] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(331), 1, + ACTIONS(371), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(333), 1, + ACTIONS(373), 1, + sym_unpaired_comment, + ACTIONS(375), 1, sym_content, - STATE(121), 12, + STATE(188), 11, sym__node, sym__expression, sym__statement, @@ -6031,19 +5592,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3708] = 5, - ACTIONS(80), 1, + [3563] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(293), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(335), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(105), 12, + ACTIONS(377), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6053,41 +5613,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3735] = 5, - ACTIONS(80), 1, + [3589] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(337), 1, + ACTIONS(377), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, + ACTIONS(379), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [3762] = 5, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(337), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(339), 1, + ACTIONS(381), 1, sym_content, - STATE(123), 12, + STATE(119), 11, sym__node, sym__expression, sym__statement, @@ -6097,19 +5634,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3789] = 5, - ACTIONS(80), 1, + [3615] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(341), 1, + ACTIONS(383), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(343), 1, + ACTIONS(385), 1, + sym_unpaired_comment, + ACTIONS(387), 1, sym_content, - STATE(185), 12, + STATE(104), 11, sym__node, sym__expression, sym__statement, @@ -6119,19 +5655,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3816] = 5, - ACTIONS(80), 1, + [3641] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(347), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(187), 12, + ACTIONS(389), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6141,19 +5676,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3843] = 5, - ACTIONS(80), 1, + [3667] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(349), 1, + ACTIONS(389), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(351), 1, + ACTIONS(391), 1, + sym_unpaired_comment, + ACTIONS(393), 1, sym_content, - STATE(189), 12, + STATE(121), 11, sym__node, sym__expression, sym__statement, @@ -6163,19 +5697,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3870] = 5, - ACTIONS(80), 1, + [3693] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(353), 1, + ACTIONS(395), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(397), 1, + sym_unpaired_comment, + ACTIONS(399), 1, + sym_content, + STATE(190), 11, sym__node, sym__expression, sym__statement, @@ -6185,19 +5718,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3897] = 5, - ACTIONS(80), 1, + [3719] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(353), 1, + ACTIONS(401), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(355), 1, + ACTIONS(403), 1, + sym_unpaired_comment, + ACTIONS(405), 1, sym_content, - STATE(126), 12, + STATE(192), 11, sym__node, sym__expression, sym__statement, @@ -6207,19 +5739,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3924] = 5, - ACTIONS(80), 1, + [3745] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(357), 1, + ACTIONS(407), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6229,19 +5760,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3951] = 5, - ACTIONS(80), 1, + [3771] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(357), 1, + ACTIONS(407), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(359), 1, + ACTIONS(409), 1, + sym_unpaired_comment, + ACTIONS(411), 1, sym_content, - STATE(128), 12, + STATE(124), 11, sym__node, sym__expression, sym__statement, @@ -6251,19 +5781,49 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [3978] = 5, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, + [3797] = 15, + ACTIONS(337), 1, + sym__identifier, + ACTIONS(339), 1, + anon_sym_autoescape, + ACTIONS(341), 1, + anon_sym_block, + ACTIONS(343), 1, + anon_sym_blocktranslate, + ACTIONS(345), 1, + anon_sym_ifchanged, + ACTIONS(347), 1, + anon_sym_spaceless, + ACTIONS(349), 1, + anon_sym_verbatim, + ACTIONS(351), 1, + anon_sym_with, + ACTIONS(353), 1, + anon_sym_if, + ACTIONS(357), 1, + anon_sym_elif, + ACTIONS(359), 1, + anon_sym_else, ACTIONS(361), 1, + anon_sym_for, + ACTIONS(363), 1, + anon_sym_filter, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(413), 1, + anon_sym_endif, + [3843] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(415), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(417), 1, + sym_unpaired_comment, + ACTIONS(419), 1, + sym_content, + STATE(194), 11, sym__node, sym__expression, sym__statement, @@ -6273,19 +5833,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4005] = 5, - ACTIONS(80), 1, + [3869] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(363), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(365), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(140), 12, + ACTIONS(421), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6295,19 +5854,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4032] = 5, - ACTIONS(80), 1, + [3895] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(367), 1, + ACTIONS(421), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(369), 1, + ACTIONS(423), 1, + sym_unpaired_comment, + ACTIONS(425), 1, sym_content, - STATE(172), 12, + STATE(126), 11, sym__node, sym__expression, sym__statement, @@ -6317,19 +5875,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4059] = 5, - ACTIONS(80), 1, + [3921] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(371), 1, + ACTIONS(427), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6339,19 +5896,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4086] = 5, - ACTIONS(80), 1, + [3947] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(371), 1, + ACTIONS(429), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(373), 1, + ACTIONS(431), 1, + sym_unpaired_comment, + ACTIONS(433), 1, sym_content, - STATE(131), 12, + STATE(138), 11, sym__node, sym__expression, sym__statement, @@ -6361,19 +5917,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4113] = 5, - ACTIONS(80), 1, + [3973] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(375), 1, + ACTIONS(435), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(437), 1, + sym_unpaired_comment, + ACTIONS(439), 1, + sym_content, + STATE(108), 11, sym__node, sym__expression, sym__statement, @@ -6383,19 +5938,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4140] = 5, - ACTIONS(80), 1, + [3999] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(377), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(379), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(97), 12, + ACTIONS(441), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6405,19 +5959,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4167] = 5, - ACTIONS(80), 1, + [4025] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(381), 1, + ACTIONS(441), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(383), 1, + ACTIONS(443), 1, + sym_unpaired_comment, + ACTIONS(445), 1, sym_content, - STATE(133), 12, + STATE(128), 11, sym__node, sym__expression, sym__statement, @@ -6427,19 +5980,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4194] = 5, - ACTIONS(80), 1, + [4051] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(385), 1, + ACTIONS(447), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6449,41 +6001,49 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4221] = 5, - ACTIONS(387), 1, + [4077] = 15, + ACTIONS(337), 1, + sym__identifier, + ACTIONS(339), 1, + anon_sym_autoescape, + ACTIONS(341), 1, + anon_sym_block, + ACTIONS(343), 1, + anon_sym_blocktranslate, + ACTIONS(345), 1, + anon_sym_ifchanged, + ACTIONS(347), 1, + anon_sym_spaceless, + ACTIONS(349), 1, + anon_sym_verbatim, + ACTIONS(351), 1, + anon_sym_with, + ACTIONS(353), 1, + anon_sym_if, + ACTIONS(357), 1, + anon_sym_elif, + ACTIONS(359), 1, + anon_sym_else, + ACTIONS(361), 1, + anon_sym_for, + ACTIONS(363), 1, + anon_sym_filter, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(449), 1, + anon_sym_endif, + [4123] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(390), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(393), 1, - anon_sym_LBRACE_POUND, - ACTIONS(396), 1, - sym_content, - STATE(132), 12, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym__comment, + ACTIONS(221), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [4248] = 5, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(223), 1, sym_content, - ACTIONS(399), 1, + ACTIONS(451), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6493,19 +6053,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4275] = 5, - ACTIONS(80), 1, + [4149] = 5, + ACTIONS(453), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(399), 1, + ACTIONS(456), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(401), 1, + ACTIONS(459), 1, + sym_unpaired_comment, + ACTIONS(462), 1, sym_content, - STATE(106), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6515,19 +6074,111 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4302] = 5, - ACTIONS(80), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(403), 1, + [4175] = 15, + ACTIONS(337), 1, + sym__identifier, + ACTIONS(339), 1, + anon_sym_autoescape, + ACTIONS(341), 1, + anon_sym_block, + ACTIONS(343), 1, + anon_sym_blocktranslate, + ACTIONS(345), 1, + anon_sym_ifchanged, + ACTIONS(347), 1, + anon_sym_spaceless, + ACTIONS(349), 1, + anon_sym_verbatim, + ACTIONS(351), 1, + anon_sym_with, + ACTIONS(353), 1, + anon_sym_if, + ACTIONS(357), 1, + anon_sym_elif, + ACTIONS(359), 1, + anon_sym_else, + ACTIONS(361), 1, + anon_sym_for, + ACTIONS(363), 1, + anon_sym_filter, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(465), 1, + anon_sym_endif, + [4221] = 15, + ACTIONS(337), 1, + sym__identifier, + ACTIONS(339), 1, + anon_sym_autoescape, + ACTIONS(341), 1, + anon_sym_block, + ACTIONS(343), 1, + anon_sym_blocktranslate, + ACTIONS(345), 1, + anon_sym_ifchanged, + ACTIONS(347), 1, + anon_sym_spaceless, + ACTIONS(349), 1, + anon_sym_verbatim, + ACTIONS(351), 1, + anon_sym_with, + ACTIONS(353), 1, + anon_sym_if, + ACTIONS(357), 1, + anon_sym_elif, + ACTIONS(359), 1, + anon_sym_else, + ACTIONS(361), 1, + anon_sym_for, + ACTIONS(363), 1, + anon_sym_filter, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(467), 1, + anon_sym_endif, + [4267] = 15, + ACTIONS(337), 1, + sym__identifier, + ACTIONS(339), 1, + anon_sym_autoescape, + ACTIONS(341), 1, + anon_sym_block, + ACTIONS(343), 1, + anon_sym_blocktranslate, + ACTIONS(345), 1, + anon_sym_ifchanged, + ACTIONS(347), 1, + anon_sym_spaceless, + ACTIONS(349), 1, + anon_sym_verbatim, + ACTIONS(351), 1, + anon_sym_with, + ACTIONS(353), 1, + anon_sym_if, + ACTIONS(357), 1, + anon_sym_elif, + ACTIONS(359), 1, + anon_sym_else, + ACTIONS(361), 1, + anon_sym_for, + ACTIONS(363), 1, + anon_sym_filter, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(469), 1, + anon_sym_endif, + [4313] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(471), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(405), 1, + ACTIONS(473), 1, + sym_unpaired_comment, + ACTIONS(475), 1, sym_content, - STATE(143), 12, + STATE(141), 11, sym__node, sym__expression, sym__statement, @@ -6537,19 +6188,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4329] = 5, - ACTIONS(80), 1, + [4339] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(409), 1, + ACTIONS(479), 1, + sym_unpaired_comment, + ACTIONS(481), 1, sym_content, - STATE(145), 12, + STATE(143), 11, sym__node, sym__expression, sym__statement, @@ -6559,19 +6209,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4356] = 5, - ACTIONS(80), 1, + [4365] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(411), 1, + ACTIONS(483), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(413), 1, + ACTIONS(485), 1, + sym_unpaired_comment, + ACTIONS(487), 1, sym_content, - STATE(147), 12, + STATE(145), 11, sym__node, sym__expression, sym__statement, @@ -6581,19 +6230,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4383] = 5, - ACTIONS(80), 1, + [4391] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(415), 1, + ACTIONS(489), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(417), 1, + ACTIONS(491), 1, + sym_unpaired_comment, + ACTIONS(493), 1, sym_content, - STATE(149), 12, + STATE(147), 11, sym__node, sym__expression, sym__statement, @@ -6603,19 +6251,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4410] = 5, - ACTIONS(80), 1, + [4417] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(419), 1, + ACTIONS(495), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(421), 1, + ACTIONS(497), 1, + sym_unpaired_comment, + ACTIONS(499), 1, sym_content, - STATE(151), 12, + STATE(149), 11, sym__node, sym__expression, sym__statement, @@ -6625,19 +6272,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4437] = 5, - ACTIONS(80), 1, + [4443] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(423), 1, + ACTIONS(501), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6647,19 +6293,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4464] = 5, - ACTIONS(80), 1, + [4469] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(425), 1, + ACTIONS(503), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(427), 1, + ACTIONS(505), 1, + sym_unpaired_comment, + ACTIONS(507), 1, sym_content, - STATE(155), 12, + STATE(153), 11, sym__node, sym__expression, sym__statement, @@ -6669,19 +6314,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4491] = 5, - ACTIONS(80), 1, + [4495] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(429), 1, + ACTIONS(509), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(432), 1, + ACTIONS(512), 1, + sym_unpaired_comment, + ACTIONS(514), 1, sym_content, - STATE(108), 12, + STATE(103), 11, sym__node, sym__expression, sym__statement, @@ -6691,19 +6335,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4518] = 5, - ACTIONS(80), 1, + [4521] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(434), 1, + ACTIONS(516), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6713,19 +6356,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4545] = 5, - ACTIONS(80), 1, + [4547] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(434), 1, + ACTIONS(516), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(436), 1, + ACTIONS(518), 1, + sym_unpaired_comment, + ACTIONS(520), 1, sym_content, - STATE(161), 12, + STATE(160), 11, sym__node, sym__expression, sym__statement, @@ -6735,19 +6377,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4572] = 5, - ACTIONS(80), 1, + [4573] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(438), 1, + ACTIONS(522), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6757,19 +6398,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, [4599] = 5, - ACTIONS(80), 1, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(423), 1, + ACTIONS(522), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(440), 1, + ACTIONS(524), 1, + sym_unpaired_comment, + ACTIONS(526), 1, sym_content, - STATE(103), 12, + STATE(161), 11, sym__node, sym__expression, sym__statement, @@ -6779,19 +6419,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4626] = 5, - ACTIONS(80), 1, + [4625] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(442), 1, + ACTIONS(528), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6801,19 +6440,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4653] = 5, - ACTIONS(80), 1, + [4651] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(442), 1, + ACTIONS(501), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(444), 1, + ACTIONS(530), 1, + sym_unpaired_comment, + ACTIONS(532), 1, sym_content, - STATE(163), 12, + STATE(101), 11, sym__node, sym__expression, sym__statement, @@ -6823,19 +6461,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4680] = 5, - ACTIONS(80), 1, + [4677] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(446), 1, + ACTIONS(534), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6845,19 +6482,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4707] = 5, - ACTIONS(80), 1, + [4703] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(446), 1, + ACTIONS(534), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(448), 1, + ACTIONS(536), 1, + sym_unpaired_comment, + ACTIONS(538), 1, sym_content, - STATE(164), 12, + STATE(163), 11, sym__node, sym__expression, sym__statement, @@ -6867,19 +6503,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4734] = 5, - ACTIONS(80), 1, + [4729] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(450), 1, + ACTIONS(540), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6889,19 +6524,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4761] = 5, - ACTIONS(80), 1, + [4755] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(450), 1, + ACTIONS(540), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(452), 1, + ACTIONS(542), 1, + sym_unpaired_comment, + ACTIONS(544), 1, sym_content, - STATE(165), 12, + STATE(164), 11, sym__node, sym__expression, sym__statement, @@ -6911,19 +6545,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4788] = 5, - ACTIONS(80), 1, + [4781] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(454), 1, + ACTIONS(546), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6933,19 +6566,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4815] = 5, - ACTIONS(80), 1, + [4807] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(454), 1, + ACTIONS(546), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(456), 1, + ACTIONS(548), 1, + sym_unpaired_comment, + ACTIONS(550), 1, sym_content, - STATE(166), 12, + STATE(165), 11, sym__node, sym__expression, sym__statement, @@ -6955,19 +6587,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4842] = 5, - ACTIONS(80), 1, + [4833] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(458), 1, + ACTIONS(552), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -6977,19 +6608,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4869] = 5, - ACTIONS(80), 1, + [4859] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(458), 1, + ACTIONS(552), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(460), 1, + ACTIONS(554), 1, + sym_unpaired_comment, + ACTIONS(556), 1, sym_content, - STATE(167), 12, + STATE(166), 11, sym__node, sym__expression, sym__statement, @@ -6999,19 +6629,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4896] = 5, - ACTIONS(80), 1, + [4885] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(462), 1, + ACTIONS(558), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(464), 1, + ACTIONS(560), 1, + sym_unpaired_comment, + ACTIONS(562), 1, sym_content, - STATE(168), 12, + STATE(167), 11, sym__node, sym__expression, sym__statement, @@ -7021,20 +6650,19 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4923] = 5, - ACTIONS(80), 1, + [4911] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(466), 1, + ACTIONS(564), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(468), 1, - sym_content, - STATE(170), 12, - sym__node, + ACTIONS(566), 1, + sym_unpaired_comment, + ACTIONS(568), 1, + sym_content, + STATE(111), 11, + sym__node, sym__expression, sym__statement, sym_paired_statement, @@ -7043,19 +6671,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4950] = 5, - ACTIONS(80), 1, + [4937] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(470), 1, + ACTIONS(570), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(472), 1, + ACTIONS(572), 1, + sym_unpaired_comment, + ACTIONS(574), 1, sym_content, - STATE(109), 12, + STATE(170), 11, sym__node, sym__expression, sym__statement, @@ -7065,19 +6692,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [4977] = 5, - ACTIONS(80), 1, + [4963] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(474), 1, + ACTIONS(576), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(476), 1, + ACTIONS(578), 1, + sym_unpaired_comment, + ACTIONS(580), 1, sym_content, - STATE(173), 12, + STATE(184), 11, sym__node, sym__expression, sym__statement, @@ -7087,19 +6713,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5004] = 5, - ACTIONS(80), 1, + [4989] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(478), 1, + ACTIONS(582), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(584), 1, + sym_unpaired_comment, + ACTIONS(586), 1, + sym_content, + STATE(173), 11, sym__node, sym__expression, sym__statement, @@ -7109,19 +6734,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5031] = 5, - ACTIONS(80), 1, + [5015] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(480), 1, + ACTIONS(588), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7131,19 +6755,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5058] = 5, - ACTIONS(80), 1, + [5041] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(482), 1, + ACTIONS(590), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7153,19 +6776,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5085] = 5, - ACTIONS(80), 1, + [5067] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(484), 1, + ACTIONS(592), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7175,19 +6797,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5112] = 5, - ACTIONS(80), 1, + [5093] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(486), 1, + ACTIONS(594), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7197,19 +6818,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5139] = 5, - ACTIONS(80), 1, + [5119] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(488), 1, + ACTIONS(596), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7219,19 +6839,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5166] = 5, - ACTIONS(80), 1, + [5145] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(490), 1, + ACTIONS(598), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7241,19 +6860,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5193] = 5, - ACTIONS(80), 1, + [5171] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(492), 1, + ACTIONS(600), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7263,19 +6881,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5220] = 5, - ACTIONS(80), 1, + [5197] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(492), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(494), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(175), 12, + ACTIONS(602), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7285,19 +6902,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5247] = 5, - ACTIONS(80), 1, + [5223] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(496), 1, + ACTIONS(602), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(604), 1, + sym_unpaired_comment, + ACTIONS(606), 1, + sym_content, + STATE(175), 11, sym__node, sym__expression, sym__statement, @@ -7307,19 +6923,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5274] = 5, - ACTIONS(80), 1, + [5249] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(496), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(498), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(177), 12, + ACTIONS(608), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7329,19 +6944,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5301] = 5, - ACTIONS(80), 1, + [5275] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(289), 1, + ACTIONS(610), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7351,19 +6965,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5328] = 5, - ACTIONS(80), 1, + [5301] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(500), 1, + ACTIONS(610), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(612), 1, + sym_unpaired_comment, + ACTIONS(614), 1, + sym_content, + STATE(177), 11, sym__node, sym__expression, sym__statement, @@ -7373,19 +6986,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5355] = 5, - ACTIONS(80), 1, + [5327] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(500), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(502), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(179), 12, + ACTIONS(616), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7395,19 +7007,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5382] = 5, - ACTIONS(80), 1, + [5353] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(504), 1, + ACTIONS(618), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7417,19 +7028,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5409] = 5, - ACTIONS(80), 1, + [5379] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(504), 1, + ACTIONS(618), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(506), 1, + ACTIONS(620), 1, + sym_unpaired_comment, + ACTIONS(622), 1, sym_content, - STATE(180), 12, + STATE(179), 11, sym__node, sym__expression, sym__statement, @@ -7439,19 +7049,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5436] = 5, - ACTIONS(80), 1, + [5405] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(508), 1, + ACTIONS(624), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7461,19 +7070,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5463] = 5, - ACTIONS(80), 1, + [5431] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(508), 1, + ACTIONS(624), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(510), 1, + ACTIONS(626), 1, + sym_unpaired_comment, + ACTIONS(628), 1, sym_content, - STATE(182), 12, + STATE(180), 11, sym__node, sym__expression, sym__statement, @@ -7483,19 +7091,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5490] = 5, - ACTIONS(80), 1, + [5457] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(512), 1, + ACTIONS(630), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7505,19 +7112,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5517] = 5, - ACTIONS(80), 1, + [5483] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(514), 1, + ACTIONS(630), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(632), 1, + sym_unpaired_comment, + ACTIONS(634), 1, + sym_content, + STATE(182), 11, sym__node, sym__expression, sym__statement, @@ -7527,19 +7133,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5544] = 5, - ACTIONS(80), 1, + [5509] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(514), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(516), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(183), 12, + ACTIONS(636), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7549,19 +7154,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5571] = 5, - ACTIONS(80), 1, + [5535] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(518), 1, + ACTIONS(638), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7571,19 +7175,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5598] = 5, - ACTIONS(80), 1, + [5561] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(520), 1, + ACTIONS(638), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(640), 1, + sym_unpaired_comment, + ACTIONS(642), 1, + sym_content, + STATE(183), 11, sym__node, sym__expression, sym__statement, @@ -7593,19 +7196,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5625] = 5, - ACTIONS(80), 1, + [5587] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(522), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(524), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(102), 12, + ACTIONS(644), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7615,19 +7217,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5652] = 5, - ACTIONS(80), 1, + [5613] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(526), 1, + ACTIONS(646), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7637,19 +7238,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5679] = 5, - ACTIONS(80), 1, + [5639] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(526), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(528), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - STATE(100), 12, + ACTIONS(648), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7659,19 +7259,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5706] = 5, - ACTIONS(80), 1, + [5665] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, - sym_content, - ACTIONS(530), 1, + ACTIONS(648), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + ACTIONS(650), 1, + sym_unpaired_comment, + ACTIONS(652), 1, + sym_content, + STATE(169), 11, sym__node, sym__expression, sym__statement, @@ -7681,19 +7280,39 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5691] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(221), 1, sym_unpaired_comment, + ACTIONS(223), 1, + sym_content, + ACTIONS(654), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, sym_paired_comment, aux_sym_template_repeat1, - [5733] = 5, - ACTIONS(80), 1, + [5717] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(530), 1, + ACTIONS(654), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(532), 1, + ACTIONS(656), 1, + sym_unpaired_comment, + ACTIONS(658), 1, sym_content, - STATE(101), 12, + STATE(172), 11, sym__node, sym__expression, sym__statement, @@ -7703,19 +7322,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, - sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [5760] = 5, - ACTIONS(80), 1, + [5743] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(135), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, sym_content, - ACTIONS(522), 1, + ACTIONS(660), 1, anon_sym_LBRACE_PERCENT, - STATE(132), 12, + STATE(129), 11, sym__node, sym__expression, sym__statement, @@ -7725,19 +7343,60 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5769] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(660), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(662), 1, sym_unpaired_comment, + ACTIONS(664), 1, + sym_content, + STATE(97), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, sym_paired_comment, aux_sym_template_repeat1, - [5787] = 5, - ACTIONS(80), 1, + [5795] = 5, + ACTIONS(205), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(84), 1, - anon_sym_LBRACE_POUND, - ACTIONS(438), 1, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, + sym_content, + ACTIONS(666), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(534), 1, + STATE(129), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5821] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(666), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(668), 1, + sym_unpaired_comment, + ACTIONS(670), 1, sym_content, - STATE(162), 12, + STATE(98), 11, sym__node, sym__expression, sym__statement, @@ -7747,3686 +7406,2944 @@ static const uint16_t ts_small_parse_table[] = { sym_filter_statement, sym_unpaired_statement, sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5847] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(221), 1, sym_unpaired_comment, + ACTIONS(223), 1, + sym_content, + ACTIONS(672), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, sym_paired_comment, aux_sym_template_repeat1, - [5814] = 15, - ACTIONS(536), 1, - sym__identifier, - ACTIONS(538), 1, - anon_sym_autoescape, - ACTIONS(540), 1, - anon_sym_block, - ACTIONS(542), 1, - anon_sym_blocktranslate, - ACTIONS(544), 1, - anon_sym_ifchanged, - ACTIONS(546), 1, - anon_sym_spaceless, - ACTIONS(548), 1, - anon_sym_verbatim, - ACTIONS(550), 1, - anon_sym_with, - ACTIONS(552), 1, - anon_sym_if, - ACTIONS(554), 1, - anon_sym_endif, - ACTIONS(556), 1, - anon_sym_elif, - ACTIONS(558), 1, - anon_sym_else, - ACTIONS(560), 1, - anon_sym_for, - ACTIONS(562), 1, - anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - [5860] = 15, - ACTIONS(536), 1, - sym__identifier, - ACTIONS(538), 1, - anon_sym_autoescape, - ACTIONS(540), 1, - anon_sym_block, - ACTIONS(542), 1, - anon_sym_blocktranslate, - ACTIONS(544), 1, - anon_sym_ifchanged, - ACTIONS(546), 1, - anon_sym_spaceless, - ACTIONS(548), 1, - anon_sym_verbatim, - ACTIONS(550), 1, - anon_sym_with, - ACTIONS(552), 1, - anon_sym_if, - ACTIONS(556), 1, - anon_sym_elif, - ACTIONS(558), 1, - anon_sym_else, - ACTIONS(560), 1, - anon_sym_for, - ACTIONS(562), 1, - anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(566), 1, - anon_sym_endif, - [5906] = 15, - ACTIONS(536), 1, - sym__identifier, - ACTIONS(538), 1, - anon_sym_autoescape, - ACTIONS(540), 1, - anon_sym_block, - ACTIONS(542), 1, - anon_sym_blocktranslate, - ACTIONS(544), 1, - anon_sym_ifchanged, - ACTIONS(546), 1, - anon_sym_spaceless, - ACTIONS(548), 1, - anon_sym_verbatim, - ACTIONS(550), 1, - anon_sym_with, - ACTIONS(552), 1, - anon_sym_if, - ACTIONS(556), 1, - anon_sym_elif, - ACTIONS(558), 1, - anon_sym_else, - ACTIONS(560), 1, - anon_sym_for, - ACTIONS(562), 1, - anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(568), 1, - anon_sym_endif, - [5952] = 15, - ACTIONS(536), 1, - sym__identifier, - ACTIONS(538), 1, - anon_sym_autoescape, - ACTIONS(540), 1, - anon_sym_block, - ACTIONS(542), 1, - anon_sym_blocktranslate, - ACTIONS(544), 1, - anon_sym_ifchanged, - ACTIONS(546), 1, - anon_sym_spaceless, - ACTIONS(548), 1, - anon_sym_verbatim, - ACTIONS(550), 1, - anon_sym_with, - ACTIONS(552), 1, - anon_sym_if, - ACTIONS(556), 1, - anon_sym_elif, - ACTIONS(558), 1, - anon_sym_else, - ACTIONS(560), 1, - anon_sym_for, - ACTIONS(562), 1, - anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(570), 1, - anon_sym_endif, - [5998] = 15, - ACTIONS(536), 1, - sym__identifier, - ACTIONS(538), 1, - anon_sym_autoescape, - ACTIONS(540), 1, - anon_sym_block, - ACTIONS(542), 1, - anon_sym_blocktranslate, - ACTIONS(544), 1, - anon_sym_ifchanged, - ACTIONS(546), 1, - anon_sym_spaceless, - ACTIONS(548), 1, - anon_sym_verbatim, - ACTIONS(550), 1, - anon_sym_with, - ACTIONS(552), 1, - anon_sym_if, - ACTIONS(556), 1, - anon_sym_elif, - ACTIONS(558), 1, - anon_sym_else, - ACTIONS(560), 1, - anon_sym_for, - ACTIONS(562), 1, - anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(572), 1, - anon_sym_endif, - [6044] = 15, - ACTIONS(536), 1, - sym__identifier, - ACTIONS(538), 1, - anon_sym_autoescape, - ACTIONS(540), 1, - anon_sym_block, - ACTIONS(542), 1, - anon_sym_blocktranslate, - ACTIONS(544), 1, - anon_sym_ifchanged, - ACTIONS(546), 1, - anon_sym_spaceless, - ACTIONS(548), 1, - anon_sym_verbatim, - ACTIONS(550), 1, - anon_sym_with, - ACTIONS(552), 1, - anon_sym_if, - ACTIONS(556), 1, - anon_sym_elif, - ACTIONS(558), 1, - anon_sym_else, - ACTIONS(560), 1, - anon_sym_for, - ACTIONS(562), 1, - anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(574), 1, - anon_sym_endif, - [6090] = 14, - ACTIONS(536), 1, + [5873] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(674), 1, + sym_unpaired_comment, + ACTIONS(676), 1, + sym_content, + STATE(99), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5899] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(221), 1, + sym_unpaired_comment, + ACTIONS(223), 1, + sym_content, + ACTIONS(678), 1, + anon_sym_LBRACE_PERCENT, + STATE(129), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5925] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(678), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(680), 1, + sym_unpaired_comment, + ACTIONS(682), 1, + sym_content, + STATE(100), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5951] = 5, + ACTIONS(205), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(528), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(684), 1, + sym_unpaired_comment, + ACTIONS(686), 1, + sym_content, + STATE(162), 11, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5977] = 14, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(576), 1, + ACTIONS(688), 1, anon_sym_endfor, - ACTIONS(578), 1, + ACTIONS(690), 1, anon_sym_empty, - [6133] = 14, - ACTIONS(536), 1, + [6020] = 14, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(578), 1, + ACTIONS(690), 1, anon_sym_empty, - ACTIONS(580), 1, + ACTIONS(692), 1, anon_sym_endfor, - [6176] = 14, - ACTIONS(536), 1, + [6063] = 2, + ACTIONS(696), 3, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + ACTIONS(694), 11, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PERCENT_RBRACE, + [6082] = 14, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(578), 1, + ACTIONS(690), 1, anon_sym_empty, - ACTIONS(582), 1, + ACTIONS(698), 1, anon_sym_endfor, - [6219] = 14, - ACTIONS(536), 1, + [6125] = 14, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(578), 1, + ACTIONS(690), 1, anon_sym_empty, - ACTIONS(584), 1, + ACTIONS(700), 1, anon_sym_endfor, - [6262] = 14, - ACTIONS(536), 1, + [6168] = 14, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(578), 1, + ACTIONS(690), 1, anon_sym_empty, - ACTIONS(586), 1, + ACTIONS(702), 1, anon_sym_endfor, - [6305] = 14, - ACTIONS(536), 1, + [6211] = 14, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(578), 1, + ACTIONS(690), 1, anon_sym_empty, - ACTIONS(588), 1, + ACTIONS(704), 1, anon_sym_endfor, - [6348] = 2, - ACTIONS(592), 3, - anon_sym_LT, - anon_sym_GT, - sym_variable_name, - ACTIONS(590), 11, - sym_keyword, - sym_keyword_operator, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_number, - sym_boolean, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - [6367] = 13, - ACTIONS(536), 1, + [6254] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(586), 1, - anon_sym_endfor, - [6407] = 13, - ACTIONS(536), 1, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(706), 1, + anon_sym_endautoescape, + [6294] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endverbatim, - [6447] = 13, - ACTIONS(536), 1, + ACTIONS(708), 1, + anon_sym_endif, + [6334] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endwith, - [6487] = 13, - ACTIONS(536), 1, + ACTIONS(688), 1, + anon_sym_endfor, + [6374] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(566), 1, - anon_sym_endif, - [6527] = 13, - ACTIONS(536), 1, + ACTIONS(710), 1, + anon_sym_endfor, + [6414] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(568), 1, + ACTIONS(712), 1, anon_sym_endif, - [6567] = 13, - ACTIONS(536), 1, + [6454] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(576), 1, - anon_sym_endfor, - [6607] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endautoescape, + [6494] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endverbatim, - [6647] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endblock, + [6534] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(598), 1, - anon_sym_endfilter, - [6687] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endblocktranslate, + [6574] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(600), 1, - anon_sym_endif, - [6727] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endifchanged, + [6614] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(602), 1, - anon_sym_endfor, - [6767] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endspaceless, + [6654] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(604), 1, - anon_sym_endfilter, - [6807] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endverbatim, + [6694] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(606), 1, - anon_sym_endif, - [6847] = 13, - ACTIONS(536), 1, + ACTIONS(714), 1, + anon_sym_endwith, + [6734] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(608), 1, - anon_sym_endfor, - [6887] = 13, - ACTIONS(536), 1, + ACTIONS(706), 1, + anon_sym_endifchanged, + [6774] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(610), 1, - anon_sym_endif, - [6927] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endautoescape, + [6814] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endautoescape, - [6967] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endblock, + [6854] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endblock, - [7007] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endblocktranslate, + [6894] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endblocktranslate, - [7047] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endifchanged, + [6934] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endifchanged, - [7087] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endspaceless, + [6974] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endspaceless, - [7127] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endverbatim, + [7014] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endverbatim, - [7167] = 13, - ACTIONS(536), 1, + ACTIONS(716), 1, + anon_sym_endwith, + [7054] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(612), 1, - anon_sym_endwith, - [7207] = 13, - ACTIONS(536), 1, + ACTIONS(467), 1, + anon_sym_endif, + [7094] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endifchanged, - [7247] = 13, - ACTIONS(536), 1, + ACTIONS(706), 1, + anon_sym_endspaceless, + [7134] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(570), 1, - anon_sym_endif, - [7287] = 13, - ACTIONS(536), 1, + ACTIONS(704), 1, + anon_sym_endfor, + [7174] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endblock, - [7327] = 13, - ACTIONS(536), 1, + ACTIONS(718), 1, + anon_sym_endfilter, + [7214] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endwith, - [7367] = 13, - ACTIONS(536), 1, + ACTIONS(720), 1, + anon_sym_endfilter, + [7254] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(584), 1, - anon_sym_endfor, - [7407] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endautoescape, + [7294] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(582), 1, - anon_sym_endfor, - [7447] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endblock, + [7334] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(572), 1, - anon_sym_endif, - [7487] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endblocktranslate, + [7374] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endwith, - [7527] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endifchanged, + [7414] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endblocktranslate, - [7567] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endspaceless, + [7454] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(618), 1, - anon_sym_endfilter, - [7607] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endverbatim, + [7494] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(620), 1, - anon_sym_endfilter, - [7647] = 13, - ACTIONS(536), 1, + ACTIONS(722), 1, + anon_sym_endwith, + [7534] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endspaceless, - [7687] = 13, - ACTIONS(536), 1, + ACTIONS(469), 1, + anon_sym_endif, + [7574] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endifchanged, - [7727] = 13, - ACTIONS(536), 1, + ACTIONS(692), 1, + anon_sym_endfor, + [7614] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(622), 1, - anon_sym_endif, - [7767] = 13, - ACTIONS(536), 1, + ACTIONS(706), 1, + anon_sym_endverbatim, + [7654] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endifchanged, - [7807] = 13, - ACTIONS(536), 1, + ACTIONS(706), 1, + anon_sym_endblocktranslate, + [7694] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endautoescape, - [7847] = 13, - ACTIONS(536), 1, + ACTIONS(724), 1, + anon_sym_endif, + [7734] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(624), 1, + ACTIONS(726), 1, anon_sym_endfor, - [7887] = 13, - ACTIONS(536), 1, + [7774] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endspaceless, - [7927] = 13, - ACTIONS(536), 1, + ACTIONS(728), 1, + anon_sym_endfilter, + [7814] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(626), 1, - anon_sym_endfilter, - [7967] = 13, - ACTIONS(536), 1, + ACTIONS(730), 1, + anon_sym_endif, + [7854] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endspaceless, - [8007] = 13, - ACTIONS(536), 1, + ACTIONS(732), 1, + anon_sym_endfor, + [7894] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(628), 1, - anon_sym_endfilter, - [8047] = 13, - ACTIONS(536), 1, + ACTIONS(734), 1, + anon_sym_endif, + [7934] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(630), 1, - anon_sym_endif, - [8087] = 13, - ACTIONS(536), 1, + ACTIONS(706), 1, + anon_sym_endwith, + [7974] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endblock, - [8127] = 13, - ACTIONS(536), 1, + ACTIONS(736), 1, + anon_sym_endautoescape, + [8014] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(632), 1, - anon_sym_endfor, - [8167] = 13, - ACTIONS(536), 1, + ACTIONS(736), 1, + anon_sym_endblock, + [8054] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(634), 1, - anon_sym_endif, - [8207] = 13, - ACTIONS(536), 1, + ACTIONS(736), 1, + anon_sym_endblocktranslate, + [8094] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, - anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endverbatim, - [8247] = 13, - ACTIONS(536), 1, + ACTIONS(365), 1, + anon_sym_comment, + ACTIONS(736), 1, + anon_sym_endifchanged, + [8134] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endautoescape, - [8287] = 13, - ACTIONS(536), 1, + ACTIONS(736), 1, + anon_sym_endspaceless, + [8174] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(616), 1, - anon_sym_endwith, - [8327] = 13, - ACTIONS(536), 1, + ACTIONS(736), 1, + anon_sym_endverbatim, + [8214] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endautoescape, - [8367] = 13, - ACTIONS(536), 1, + ACTIONS(736), 1, + anon_sym_endwith, + [8254] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endblock, - [8407] = 13, - ACTIONS(536), 1, + ACTIONS(413), 1, + anon_sym_endif, + [8294] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endblocktranslate, - [8447] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endwith, + [8334] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endifchanged, - [8487] = 13, - ACTIONS(536), 1, + ACTIONS(702), 1, + anon_sym_endfor, + [8374] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(355), 1, + anon_sym_endif, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endspaceless, - [8527] = 13, - ACTIONS(536), 1, + [8414] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endverbatim, - [8567] = 13, - ACTIONS(536), 1, + ACTIONS(706), 1, + anon_sym_endblock, + [8454] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(636), 1, - anon_sym_endwith, - [8607] = 13, - ACTIONS(536), 1, + ACTIONS(740), 1, + anon_sym_endfilter, + [8494] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endblocktranslate, - [8647] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endautoescape, + [8534] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endautoescape, - [8687] = 13, - ACTIONS(536), 1, + ACTIONS(742), 1, + anon_sym_endif, + [8574] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endifchanged, - [8727] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endblock, + [8614] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(594), 1, - anon_sym_endspaceless, - [8767] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endblocktranslate, + [8654] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endblock, - [8807] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endifchanged, + [8694] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endautoescape, - [8847] = 13, - ACTIONS(536), 1, + ACTIONS(744), 1, + anon_sym_endfor, + [8734] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endblock, - [8887] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endspaceless, + [8774] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endblocktranslate, - [8927] = 13, - ACTIONS(536), 1, + ACTIONS(738), 1, + anon_sym_endverbatim, + [8814] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(596), 1, - anon_sym_endblocktranslate, - [8967] = 13, - ACTIONS(536), 1, + ACTIONS(746), 1, + anon_sym_endfilter, + [8854] = 13, + ACTIONS(337), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(365), 1, anon_sym_comment, - ACTIONS(614), 1, - anon_sym_endverbatim, - [9007] = 12, - ACTIONS(638), 1, + ACTIONS(748), 1, + anon_sym_endfilter, + [8894] = 12, + ACTIONS(337), 1, sym__identifier, - ACTIONS(640), 1, + ACTIONS(339), 1, anon_sym_autoescape, - ACTIONS(642), 1, + ACTIONS(341), 1, anon_sym_block, - ACTIONS(644), 1, + ACTIONS(343), 1, anon_sym_blocktranslate, - ACTIONS(646), 1, + ACTIONS(345), 1, anon_sym_ifchanged, - ACTIONS(648), 1, + ACTIONS(347), 1, anon_sym_spaceless, - ACTIONS(650), 1, + ACTIONS(349), 1, anon_sym_verbatim, - ACTIONS(652), 1, + ACTIONS(351), 1, anon_sym_with, - ACTIONS(654), 1, + ACTIONS(353), 1, anon_sym_if, - ACTIONS(656), 1, + ACTIONS(361), 1, anon_sym_for, - ACTIONS(658), 1, + ACTIONS(363), 1, anon_sym_filter, - ACTIONS(660), 1, + ACTIONS(365), 1, anon_sym_comment, - [9044] = 12, - ACTIONS(536), 1, + [8931] = 12, + ACTIONS(750), 1, sym__identifier, - ACTIONS(538), 1, + ACTIONS(752), 1, anon_sym_autoescape, - ACTIONS(540), 1, + ACTIONS(754), 1, anon_sym_block, - ACTIONS(542), 1, + ACTIONS(756), 1, anon_sym_blocktranslate, - ACTIONS(544), 1, + ACTIONS(758), 1, anon_sym_ifchanged, - ACTIONS(546), 1, + ACTIONS(760), 1, anon_sym_spaceless, - ACTIONS(548), 1, + ACTIONS(762), 1, anon_sym_verbatim, - ACTIONS(550), 1, + ACTIONS(764), 1, anon_sym_with, - ACTIONS(552), 1, + ACTIONS(766), 1, anon_sym_if, - ACTIONS(560), 1, + ACTIONS(768), 1, anon_sym_for, - ACTIONS(562), 1, + ACTIONS(770), 1, anon_sym_filter, - ACTIONS(564), 1, + ACTIONS(772), 1, anon_sym_comment, - [9081] = 6, - ACTIONS(662), 1, - anon_sym_LBRACE_POUND, - ACTIONS(664), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(666), 1, - anon_sym_POUND_RBRACE, - STATE(273), 1, - aux_sym_unpaired_comment_repeat1, - STATE(331), 1, - aux_sym_unpaired_comment_repeat2, - STATE(334), 1, - sym_unpaired_comment, - [9100] = 6, - ACTIONS(662), 1, - anon_sym_LBRACE_POUND, - ACTIONS(668), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(670), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, - sym_unpaired_comment, - STATE(335), 1, - aux_sym_unpaired_comment_repeat2, - STATE(337), 1, - aux_sym_unpaired_comment_repeat1, - [9119] = 6, - ACTIONS(662), 1, - anon_sym_LBRACE_POUND, - ACTIONS(672), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(674), 1, - anon_sym_POUND_RBRACE, - STATE(275), 1, - aux_sym_unpaired_comment_repeat1, - STATE(334), 1, - sym_unpaired_comment, - STATE(338), 1, - aux_sym_unpaired_comment_repeat2, - [9138] = 6, - ACTIONS(662), 1, - anon_sym_LBRACE_POUND, - ACTIONS(668), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(676), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, - sym_unpaired_comment, - STATE(337), 1, - aux_sym_unpaired_comment_repeat1, - STATE(373), 1, - aux_sym_unpaired_comment_repeat2, - [9157] = 6, - ACTIONS(662), 1, - anon_sym_LBRACE_POUND, - ACTIONS(678), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(680), 1, - anon_sym_POUND_RBRACE, - STATE(277), 1, - aux_sym_unpaired_comment_repeat1, - STATE(334), 1, - sym_unpaired_comment, - STATE(341), 1, - aux_sym_unpaired_comment_repeat2, - [9176] = 6, - ACTIONS(662), 1, - anon_sym_LBRACE_POUND, - ACTIONS(668), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(682), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, - sym_unpaired_comment, - STATE(337), 1, - aux_sym_unpaired_comment_repeat1, - STATE(342), 1, - aux_sym_unpaired_comment_repeat2, - [9195] = 5, - ACTIONS(684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - STATE(387), 1, - sym_paired_comment, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - STATE(405), 1, - aux_sym_paired_comment_repeat1, - [9211] = 2, - ACTIONS(688), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(690), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9221] = 2, - ACTIONS(692), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(694), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9231] = 2, - ACTIONS(696), 2, + [8968] = 2, + ACTIONS(774), 2, ts_builtin_sym_end, sym_content, - ACTIONS(698), 3, + ACTIONS(776), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9241] = 2, - ACTIONS(700), 2, + sym_unpaired_comment, + [8978] = 2, + ACTIONS(778), 2, ts_builtin_sym_end, sym_content, - ACTIONS(702), 3, + ACTIONS(780), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9251] = 4, + sym_unpaired_comment, + [8988] = 4, ACTIONS(36), 1, anon_sym_SQUOTE, ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(704), 1, + ACTIONS(782), 1, sym_variable_name, - STATE(486), 2, + STATE(387), 2, sym_string, sym_variable, - [9265] = 2, - ACTIONS(706), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(708), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9275] = 2, - ACTIONS(710), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(712), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9285] = 4, - ACTIONS(714), 1, - sym__identifier, - ACTIONS(716), 1, - anon_sym_SQUOTE, - ACTIONS(718), 1, - anon_sym_DQUOTE, - STATE(83), 2, - sym_filter_argument, - sym__quoted_filter_argument, - [9299] = 5, - ACTIONS(720), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(722), 1, - aux_sym_unpaired_comment_token1, - STATE(291), 1, - aux_sym_unpaired_comment_repeat1, - STATE(381), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [9315] = 2, - ACTIONS(724), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(726), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9325] = 2, - ACTIONS(728), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(730), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9335] = 2, - ACTIONS(732), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(734), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9345] = 5, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(736), 1, - anon_sym_LBRACE_PERCENT, - STATE(376), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - [9361] = 2, - ACTIONS(738), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(740), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9371] = 5, - ACTIONS(742), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(744), 1, - aux_sym_unpaired_comment_token1, - STATE(305), 1, - aux_sym_unpaired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(390), 1, - aux_sym_paired_comment_repeat1, - [9387] = 2, - ACTIONS(746), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(748), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9397] = 2, - ACTIONS(750), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(752), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9407] = 2, - ACTIONS(754), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(756), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9417] = 2, - ACTIONS(758), 2, + [9002] = 2, + ACTIONS(784), 2, ts_builtin_sym_end, sym_content, - ACTIONS(760), 3, + ACTIONS(786), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9427] = 2, - ACTIONS(762), 2, + sym_unpaired_comment, + [9012] = 2, + ACTIONS(788), 2, ts_builtin_sym_end, sym_content, - ACTIONS(764), 3, + ACTIONS(790), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9437] = 2, - ACTIONS(766), 2, + sym_unpaired_comment, + [9022] = 2, + ACTIONS(792), 2, ts_builtin_sym_end, sym_content, - ACTIONS(768), 3, + ACTIONS(794), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9447] = 2, - ACTIONS(770), 2, + sym_unpaired_comment, + [9032] = 2, + ACTIONS(796), 2, ts_builtin_sym_end, sym_content, - ACTIONS(772), 3, + ACTIONS(798), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9457] = 4, - ACTIONS(36), 1, + sym_unpaired_comment, + [9042] = 4, + ACTIONS(800), 1, + sym__identifier, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(38), 1, + ACTIONS(804), 1, anon_sym_DQUOTE, - ACTIONS(704), 1, - sym_variable_name, - STATE(468), 2, - sym_string, - sym_variable, - [9471] = 2, - ACTIONS(774), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(776), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9481] = 5, - ACTIONS(778), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(780), 1, - aux_sym_unpaired_comment_token1, - STATE(314), 1, - aux_sym_unpaired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(394), 1, - aux_sym_paired_comment_repeat1, - [9497] = 5, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(782), 1, - anon_sym_LBRACE_PERCENT, - STATE(387), 1, - sym_paired_comment, - STATE(395), 1, - aux_sym_paired_comment_repeat1, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - [9513] = 5, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(784), 1, - anon_sym_LBRACE_PERCENT, - STATE(384), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - [9529] = 2, - ACTIONS(786), 2, - ts_builtin_sym_end, - sym_content, - ACTIONS(788), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9539] = 2, - ACTIONS(790), 2, + STATE(79), 2, + sym_filter_argument, + sym__quoted_filter_argument, + [9056] = 2, + ACTIONS(806), 2, ts_builtin_sym_end, sym_content, - ACTIONS(792), 3, + ACTIONS(808), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9549] = 2, - ACTIONS(794), 2, + sym_unpaired_comment, + [9066] = 2, + ACTIONS(810), 2, ts_builtin_sym_end, sym_content, - ACTIONS(796), 3, + ACTIONS(812), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9559] = 2, - ACTIONS(798), 2, + sym_unpaired_comment, + [9076] = 2, + ACTIONS(814), 2, ts_builtin_sym_end, sym_content, - ACTIONS(800), 3, + ACTIONS(816), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9569] = 2, - ACTIONS(802), 2, + sym_unpaired_comment, + [9086] = 2, + ACTIONS(818), 2, ts_builtin_sym_end, sym_content, - ACTIONS(804), 3, + ACTIONS(820), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9579] = 2, - ACTIONS(806), 2, + sym_unpaired_comment, + [9096] = 2, + ACTIONS(822), 2, ts_builtin_sym_end, sym_content, - ACTIONS(808), 3, + ACTIONS(824), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9589] = 2, - ACTIONS(810), 2, + sym_unpaired_comment, + [9106] = 2, + ACTIONS(826), 2, ts_builtin_sym_end, sym_content, - ACTIONS(812), 3, + ACTIONS(828), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9599] = 2, - ACTIONS(814), 2, + sym_unpaired_comment, + [9116] = 2, + ACTIONS(830), 2, ts_builtin_sym_end, sym_content, - ACTIONS(816), 3, + ACTIONS(832), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9609] = 5, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(818), 1, - anon_sym_LBRACE_PERCENT, - STATE(387), 1, - sym_paired_comment, - STATE(398), 1, - aux_sym_paired_comment_repeat1, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - [9625] = 2, - ACTIONS(820), 2, + sym_unpaired_comment, + [9126] = 2, + ACTIONS(834), 2, ts_builtin_sym_end, sym_content, - ACTIONS(822), 3, + ACTIONS(836), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9635] = 2, - ACTIONS(824), 2, + sym_unpaired_comment, + [9136] = 2, + ACTIONS(838), 2, ts_builtin_sym_end, sym_content, - ACTIONS(826), 3, + ACTIONS(840), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9645] = 2, - ACTIONS(828), 2, + sym_unpaired_comment, + [9146] = 2, + ACTIONS(842), 2, ts_builtin_sym_end, sym_content, - ACTIONS(830), 3, + ACTIONS(844), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9655] = 2, - ACTIONS(832), 2, + sym_unpaired_comment, + [9156] = 2, + ACTIONS(846), 2, ts_builtin_sym_end, sym_content, - ACTIONS(834), 3, + ACTIONS(848), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9665] = 5, - ACTIONS(836), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(838), 1, - aux_sym_unpaired_comment_token1, - STATE(321), 1, - aux_sym_unpaired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(401), 1, - aux_sym_paired_comment_repeat1, - [9681] = 5, - ACTIONS(840), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(842), 1, - aux_sym_unpaired_comment_token1, - STATE(278), 1, - aux_sym_unpaired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(403), 1, - aux_sym_paired_comment_repeat1, - [9697] = 5, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(844), 1, - anon_sym_LBRACE_PERCENT, - STATE(387), 1, - sym_paired_comment, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - STATE(404), 1, - aux_sym_paired_comment_repeat1, - [9713] = 5, - ACTIONS(846), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(848), 1, - aux_sym_unpaired_comment_token1, - STATE(304), 1, - aux_sym_unpaired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - STATE(389), 1, - aux_sym_paired_comment_repeat1, - [9729] = 4, - ACTIONS(850), 1, - anon_sym_LBRACE_PERCENT, - STATE(142), 1, - sym_elif_statement, - STATE(176), 1, - sym_else_statement, - STATE(392), 1, - aux_sym_if_statement_repeat1, - [9742] = 2, - ACTIONS(828), 1, + sym_unpaired_comment, + [9166] = 4, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(782), 1, + sym_variable_name, + STATE(394), 2, + sym_string, + sym_variable, + [9180] = 2, + ACTIONS(850), 2, + ts_builtin_sym_end, sym_content, - ACTIONS(830), 3, + ACTIONS(852), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9751] = 2, - ACTIONS(692), 1, + sym_unpaired_comment, + [9190] = 2, + ACTIONS(854), 2, + ts_builtin_sym_end, sym_content, - ACTIONS(694), 3, + ACTIONS(856), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9760] = 2, - ACTIONS(754), 1, + sym_unpaired_comment, + [9200] = 2, + ACTIONS(858), 2, + ts_builtin_sym_end, sym_content, - ACTIONS(756), 3, + ACTIONS(860), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9769] = 2, - ACTIONS(770), 1, + sym_unpaired_comment, + [9210] = 2, + ACTIONS(862), 2, + ts_builtin_sym_end, sym_content, - ACTIONS(772), 3, + ACTIONS(864), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9778] = 2, - ACTIONS(832), 1, + sym_unpaired_comment, + [9220] = 2, + ACTIONS(866), 2, + ts_builtin_sym_end, sym_content, - ACTIONS(834), 3, + ACTIONS(868), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9787] = 4, - ACTIONS(852), 1, - anon_sym_LBRACE_PERCENT, - STATE(120), 1, - sym_else_statement, - STATE(142), 1, - sym_elif_statement, - STATE(392), 1, - aux_sym_if_statement_repeat1, - [9800] = 2, - ACTIONS(762), 1, + sym_unpaired_comment, + [9230] = 2, + ACTIONS(870), 2, + ts_builtin_sym_end, sym_content, - ACTIONS(764), 3, + ACTIONS(872), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9809] = 4, - ACTIONS(854), 1, - anon_sym_LBRACE_POUND, - ACTIONS(856), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [9822] = 3, - ACTIONS(668), 1, - aux_sym_unpaired_comment_token1, - STATE(337), 1, - aux_sym_unpaired_comment_repeat1, - ACTIONS(858), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [9833] = 4, - ACTIONS(860), 1, + [9240] = 4, + ACTIONS(874), 1, anon_sym_LBRACE_PERCENT, - STATE(142), 1, + STATE(140), 1, sym_elif_statement, - STATE(169), 1, + STATE(181), 1, sym_else_statement, - STATE(392), 1, + STATE(348), 1, aux_sym_if_statement_repeat1, - [9846] = 3, - ACTIONS(864), 1, - aux_sym_unpaired_comment_token1, - STATE(332), 1, - aux_sym_unpaired_comment_repeat1, - ACTIONS(862), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [9857] = 4, - ACTIONS(854), 1, - anon_sym_LBRACE_POUND, - ACTIONS(866), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, - sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [9870] = 2, - ACTIONS(766), 1, + [9253] = 2, + ACTIONS(858), 1, sym_content, - ACTIONS(768), 3, + ACTIONS(860), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9879] = 3, - ACTIONS(870), 1, - aux_sym_unpaired_comment_token1, - STATE(337), 1, - aux_sym_unpaired_comment_repeat1, - ACTIONS(868), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [9890] = 4, - ACTIONS(854), 1, - anon_sym_LBRACE_POUND, - ACTIONS(873), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [9903] = 2, - ACTIONS(774), 1, - sym_content, - ACTIONS(776), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9912] = 2, - ACTIONS(877), 1, + [9262] = 2, + ACTIONS(866), 1, sym_content, - ACTIONS(875), 3, + ACTIONS(868), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9921] = 4, - ACTIONS(854), 1, - anon_sym_LBRACE_POUND, - ACTIONS(879), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, - sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [9934] = 4, - ACTIONS(854), 1, - anon_sym_LBRACE_POUND, - ACTIONS(881), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [9947] = 2, - ACTIONS(786), 1, - sym_content, - ACTIONS(788), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9956] = 2, - ACTIONS(885), 1, + [9271] = 2, + ACTIONS(870), 1, sym_content, - ACTIONS(883), 3, + ACTIONS(872), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9965] = 2, - ACTIONS(790), 1, + sym_unpaired_comment, + [9280] = 2, + ACTIONS(778), 1, sym_content, - ACTIONS(792), 3, + ACTIONS(780), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9974] = 2, - ACTIONS(758), 1, + sym_unpaired_comment, + [9289] = 2, + ACTIONS(774), 1, sym_content, - ACTIONS(760), 3, + ACTIONS(776), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9983] = 2, - ACTIONS(824), 1, + sym_unpaired_comment, + [9298] = 2, + ACTIONS(792), 1, sym_content, - ACTIONS(826), 3, + ACTIONS(794), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [9992] = 4, - ACTIONS(887), 1, - anon_sym_LBRACE_PERCENT, - STATE(110), 1, - sym_else_statement, - STATE(142), 1, - sym_elif_statement, - STATE(392), 1, - aux_sym_if_statement_repeat1, - [10005] = 4, - ACTIONS(889), 1, - anon_sym_LBRACE_PERCENT, - STATE(127), 1, - sym_else_statement, - STATE(142), 1, - sym_elif_statement, - STATE(392), 1, - aux_sym_if_statement_repeat1, - [10018] = 2, - ACTIONS(794), 1, + sym_unpaired_comment, + [9307] = 2, + ACTIONS(818), 1, sym_content, - ACTIONS(796), 3, + ACTIONS(820), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10027] = 2, - ACTIONS(893), 1, + sym_unpaired_comment, + [9316] = 2, + ACTIONS(784), 1, sym_content, - ACTIONS(891), 3, + ACTIONS(786), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10036] = 2, - ACTIONS(798), 1, + sym_unpaired_comment, + [9325] = 2, + ACTIONS(788), 1, sym_content, - ACTIONS(800), 3, + ACTIONS(790), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10045] = 4, - ACTIONS(895), 1, - anon_sym_LBRACE_PERCENT, - STATE(142), 1, - sym_elif_statement, - STATE(181), 1, - sym_else_statement, - STATE(392), 1, - aux_sym_if_statement_repeat1, - [10058] = 2, - ACTIONS(802), 1, + sym_unpaired_comment, + [9334] = 2, + ACTIONS(796), 1, sym_content, - ACTIONS(804), 3, + ACTIONS(798), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10067] = 2, + sym_unpaired_comment, + [9343] = 2, ACTIONS(806), 1, sym_content, ACTIONS(808), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10076] = 2, + sym_unpaired_comment, + [9352] = 2, ACTIONS(810), 1, sym_content, ACTIONS(812), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10085] = 2, - ACTIONS(706), 1, + sym_unpaired_comment, + [9361] = 2, + ACTIONS(814), 1, sym_content, - ACTIONS(708), 3, + ACTIONS(816), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10094] = 2, - ACTIONS(696), 1, + sym_unpaired_comment, + [9370] = 2, + ACTIONS(822), 1, sym_content, - ACTIONS(698), 3, + ACTIONS(824), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10103] = 2, - ACTIONS(899), 1, + sym_unpaired_comment, + [9379] = 2, + ACTIONS(826), 1, sym_content, - ACTIONS(897), 3, + ACTIONS(828), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10112] = 2, - ACTIONS(814), 1, + sym_unpaired_comment, + [9388] = 2, + ACTIONS(830), 1, sym_content, - ACTIONS(816), 3, + ACTIONS(832), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10121] = 2, - ACTIONS(820), 1, + sym_unpaired_comment, + [9397] = 2, + ACTIONS(834), 1, sym_content, - ACTIONS(822), 3, + ACTIONS(836), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10130] = 4, - ACTIONS(901), 1, - anon_sym_LBRACE_POUND, - ACTIONS(904), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [10143] = 2, - ACTIONS(746), 1, + [9406] = 2, + ACTIONS(838), 1, sym_content, - ACTIONS(748), 3, + ACTIONS(840), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10152] = 2, - ACTIONS(688), 1, + sym_unpaired_comment, + [9415] = 2, + ACTIONS(878), 1, sym_content, - ACTIONS(690), 3, + ACTIONS(876), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10161] = 2, - ACTIONS(908), 1, + sym_unpaired_comment, + [9424] = 4, + ACTIONS(880), 1, + anon_sym_LBRACE_PERCENT, + STATE(140), 1, + sym_elif_statement, + STATE(168), 1, + sym_else_statement, + STATE(348), 1, + aux_sym_if_statement_repeat1, + [9437] = 2, + ACTIONS(846), 1, sym_content, - ACTIONS(906), 3, + ACTIONS(848), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10170] = 2, - ACTIONS(750), 1, + sym_unpaired_comment, + [9446] = 4, + ACTIONS(882), 1, + anon_sym_LBRACE_PERCENT, + STATE(125), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(348), 1, + aux_sym_if_statement_repeat1, + [9459] = 2, + ACTIONS(862), 1, sym_content, - ACTIONS(752), 3, + ACTIONS(864), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10179] = 2, - ACTIONS(700), 1, + sym_unpaired_comment, + [9468] = 2, + ACTIONS(886), 1, sym_content, - ACTIONS(702), 3, + ACTIONS(884), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10188] = 2, - ACTIONS(710), 1, + sym_unpaired_comment, + [9477] = 2, + ACTIONS(854), 1, sym_content, - ACTIONS(712), 3, + ACTIONS(856), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10197] = 2, - ACTIONS(724), 1, + sym_unpaired_comment, + [9486] = 4, + ACTIONS(888), 1, + anon_sym_LBRACE_PERCENT, + STATE(140), 1, + sym_elif_statement, + STATE(176), 1, + sym_else_statement, + STATE(348), 1, + aux_sym_if_statement_repeat1, + [9499] = 4, + ACTIONS(890), 1, + anon_sym_LBRACE_PERCENT, + STATE(106), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(348), 1, + aux_sym_if_statement_repeat1, + [9512] = 4, + ACTIONS(892), 1, + anon_sym_LBRACE_PERCENT, + STATE(116), 1, + sym_else_statement, + STATE(140), 1, + sym_elif_statement, + STATE(348), 1, + aux_sym_if_statement_repeat1, + [9525] = 2, + ACTIONS(842), 1, sym_content, - ACTIONS(726), 3, + ACTIONS(844), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10206] = 2, - ACTIONS(728), 1, + sym_unpaired_comment, + [9534] = 2, + ACTIONS(896), 1, sym_content, - ACTIONS(730), 3, + ACTIONS(894), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10215] = 2, - ACTIONS(732), 1, + sym_unpaired_comment, + [9543] = 2, + ACTIONS(850), 1, sym_content, - ACTIONS(734), 3, + ACTIONS(852), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10224] = 2, - ACTIONS(738), 1, + sym_unpaired_comment, + [9552] = 2, + ACTIONS(900), 1, sym_content, - ACTIONS(740), 3, + ACTIONS(898), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + sym_unpaired_comment, + [9561] = 2, + ACTIONS(904), 1, + sym_content, + ACTIONS(902), 3, anon_sym_LBRACE_LBRACE, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [10233] = 4, - ACTIONS(854), 1, - anon_sym_LBRACE_POUND, - ACTIONS(910), 1, - anon_sym_POUND_RBRACE, - STATE(334), 1, sym_unpaired_comment, - STATE(362), 1, - aux_sym_unpaired_comment_repeat2, - [10246] = 3, + [9570] = 3, + ACTIONS(906), 1, + anon_sym_endif, + ACTIONS(908), 1, + anon_sym_elif, + ACTIONS(910), 1, + anon_sym_else, + [9580] = 3, ACTIONS(912), 1, anon_sym_SQUOTE, ACTIONS(914), 1, aux_sym_string_token1, - STATE(374), 1, + STATE(340), 1, aux_sym_string_repeat1, - [10256] = 3, + [9590] = 3, ACTIONS(58), 1, anon_sym_PIPE, - ACTIONS(917), 1, + ACTIONS(916), 1, anon_sym_PERCENT_RBRACE, - STATE(28), 1, + STATE(336), 1, aux_sym_string_repeat3, - [10266] = 3, - ACTIONS(919), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10276] = 3, - ACTIONS(921), 1, - anon_sym_endif, - ACTIONS(923), 1, - anon_sym_elif, - ACTIONS(925), 1, - anon_sym_else, - [10286] = 3, - ACTIONS(927), 1, + [9600] = 3, + ACTIONS(918), 1, anon_sym_DQUOTE, - ACTIONS(929), 1, + ACTIONS(920), 1, aux_sym_string_token2, - STATE(409), 1, + STATE(341), 1, aux_sym_string_repeat2, - [10296] = 3, - ACTIONS(923), 1, - anon_sym_elif, - ACTIONS(925), 1, - anon_sym_else, - ACTIONS(931), 1, - anon_sym_endif, - [10306] = 3, + [9610] = 3, ACTIONS(58), 1, anon_sym_PIPE, - ACTIONS(933), 1, + ACTIONS(922), 1, anon_sym_PERCENT_RBRACE, - STATE(400), 1, + STATE(27), 1, aux_sym_string_repeat3, - [10316] = 3, - ACTIONS(935), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10326] = 3, - ACTIONS(923), 1, - anon_sym_elif, - ACTIONS(925), 1, - anon_sym_else, - ACTIONS(937), 1, - anon_sym_endif, - [10336] = 3, - ACTIONS(686), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(939), 1, - anon_sym_LBRACE_PERCENT, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - [10346] = 3, - ACTIONS(941), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10356] = 3, - ACTIONS(943), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10366] = 3, - ACTIONS(946), 1, + [9620] = 3, + ACTIONS(912), 1, + anon_sym_DQUOTE, + ACTIONS(920), 1, + aux_sym_string_token2, + STATE(339), 1, + aux_sym_string_repeat2, + [9630] = 3, + ACTIONS(924), 1, sym__identifier, - STATE(25), 1, + STATE(24), 1, sym_filter_name, - STATE(380), 1, + STATE(334), 1, sym_filter, - [10376] = 3, - ACTIONS(948), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(950), 1, - aux_sym_unpaired_comment_token1, - STATE(383), 1, - aux_sym_unpaired_comment_repeat1, - [10386] = 3, - ACTIONS(923), 1, + [9640] = 3, + ACTIONS(920), 1, + aux_sym_string_token2, + ACTIONS(926), 1, + anon_sym_DQUOTE, + STATE(341), 1, + aux_sym_string_repeat2, + [9650] = 3, + ACTIONS(914), 1, + aux_sym_string_token1, + ACTIONS(926), 1, + anon_sym_SQUOTE, + STATE(353), 1, + aux_sym_string_repeat1, + [9660] = 3, + ACTIONS(928), 1, + anon_sym_DQUOTE, + ACTIONS(930), 1, + aux_sym_string_token2, + STATE(341), 1, + aux_sym_string_repeat2, + [9670] = 3, + ACTIONS(908), 1, anon_sym_elif, - ACTIONS(925), 1, + ACTIONS(910), 1, anon_sym_else, - ACTIONS(952), 1, + ACTIONS(933), 1, anon_sym_endif, - [10396] = 3, - ACTIONS(954), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10406] = 3, - ACTIONS(956), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10416] = 3, - ACTIONS(946), 1, - sym__identifier, - STATE(25), 1, - sym_filter_name, - STATE(415), 1, - sym_filter, - [10426] = 3, - ACTIONS(958), 1, - anon_sym_LBRACE_PERCENT, - STATE(142), 1, - sym_elif_statement, - STATE(392), 1, - aux_sym_if_statement_repeat1, - [10436] = 3, - ACTIONS(923), 1, + [9680] = 3, + ACTIONS(908), 1, anon_sym_elif, - ACTIONS(925), 1, + ACTIONS(910), 1, anon_sym_else, - ACTIONS(961), 1, + ACTIONS(935), 1, anon_sym_endif, - [10446] = 3, - ACTIONS(963), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10456] = 3, - ACTIONS(965), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10466] = 3, - ACTIONS(946), 1, + [9690] = 3, + ACTIONS(914), 1, + aux_sym_string_token1, + ACTIONS(937), 1, + anon_sym_SQUOTE, + STATE(346), 1, + aux_sym_string_repeat1, + [9700] = 3, + ACTIONS(908), 1, + anon_sym_elif, + ACTIONS(910), 1, + anon_sym_else, + ACTIONS(939), 1, + anon_sym_endif, + [9710] = 3, + ACTIONS(914), 1, + aux_sym_string_token1, + ACTIONS(918), 1, + anon_sym_SQUOTE, + STATE(353), 1, + aux_sym_string_repeat1, + [9720] = 3, + ACTIONS(924), 1, sym__identifier, - STATE(25), 1, + STATE(24), 1, sym_filter_name, - STATE(82), 1, + STATE(80), 1, sym_filter, - [10476] = 1, - ACTIONS(694), 3, - anon_sym_LBRACE_POUND, - aux_sym_unpaired_comment_token1, - anon_sym_POUND_RBRACE, - [10482] = 3, - ACTIONS(967), 1, + [9730] = 3, + ACTIONS(941), 1, anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10492] = 1, - ACTIONS(772), 3, - anon_sym_LBRACE_POUND, - aux_sym_unpaired_comment_token1, - anon_sym_POUND_RBRACE, - [10498] = 3, + STATE(140), 1, + sym_elif_statement, + STATE(348), 1, + aux_sym_if_statement_repeat1, + [9740] = 3, + ACTIONS(908), 1, + anon_sym_elif, + ACTIONS(910), 1, + anon_sym_else, + ACTIONS(944), 1, + anon_sym_endif, + [9750] = 3, ACTIONS(58), 1, anon_sym_PIPE, - ACTIONS(969), 1, + ACTIONS(946), 1, anon_sym_PERCENT_RBRACE, - STATE(28), 1, + STATE(354), 1, aux_sym_string_repeat3, - [10508] = 3, - ACTIONS(971), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10518] = 3, - ACTIONS(868), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(973), 1, - aux_sym_unpaired_comment_token1, - STATE(402), 1, - aux_sym_unpaired_comment_repeat1, - [10528] = 3, - ACTIONS(976), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10538] = 3, - ACTIONS(978), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10548] = 3, - ACTIONS(980), 1, - anon_sym_LBRACE_PERCENT, - STATE(385), 1, - aux_sym_paired_comment_repeat1, - STATE(387), 1, - sym_paired_comment, - [10558] = 3, - ACTIONS(982), 1, - anon_sym_DQUOTE, - ACTIONS(984), 1, - aux_sym_string_token2, - STATE(406), 1, - aux_sym_string_repeat2, - [10568] = 3, - ACTIONS(987), 1, - anon_sym_SQUOTE, - ACTIONS(989), 1, - aux_sym_string_token1, - STATE(374), 1, - aux_sym_string_repeat1, - [10578] = 3, - ACTIONS(929), 1, - aux_sym_string_token2, - ACTIONS(991), 1, - anon_sym_DQUOTE, - STATE(406), 1, - aux_sym_string_repeat2, - [10588] = 3, - ACTIONS(929), 1, - aux_sym_string_token2, - ACTIONS(987), 1, - anon_sym_DQUOTE, - STATE(406), 1, - aux_sym_string_repeat2, - [10598] = 1, - ACTIONS(834), 3, - anon_sym_LBRACE_POUND, - aux_sym_unpaired_comment_token1, - anon_sym_POUND_RBRACE, - [10604] = 3, - ACTIONS(923), 1, + [9760] = 3, + ACTIONS(908), 1, anon_sym_elif, - ACTIONS(925), 1, + ACTIONS(910), 1, anon_sym_else, - ACTIONS(993), 1, + ACTIONS(948), 1, anon_sym_endif, - [10614] = 3, - ACTIONS(989), 1, - aux_sym_string_token1, - ACTIONS(995), 1, - anon_sym_SQUOTE, - STATE(414), 1, - aux_sym_string_repeat1, - [10624] = 3, - ACTIONS(929), 1, + [9770] = 3, + ACTIONS(920), 1, aux_sym_string_token2, - ACTIONS(995), 1, + ACTIONS(937), 1, anon_sym_DQUOTE, - STATE(408), 1, + STATE(335), 1, aux_sym_string_repeat2, - [10634] = 3, - ACTIONS(989), 1, - aux_sym_string_token1, - ACTIONS(991), 1, + [9780] = 3, + ACTIONS(950), 1, anon_sym_SQUOTE, - STATE(374), 1, + ACTIONS(952), 1, + aux_sym_string_token1, + STATE(353), 1, aux_sym_string_repeat1, - [10644] = 3, + [9790] = 3, ACTIONS(58), 1, anon_sym_PIPE, - ACTIONS(997), 1, + ACTIONS(955), 1, anon_sym_PERCENT_RBRACE, - STATE(375), 1, + STATE(27), 1, aux_sym_string_repeat3, - [10654] = 3, - ACTIONS(927), 1, + [9800] = 3, + ACTIONS(924), 1, + sym__identifier, + STATE(24), 1, + sym_filter_name, + STATE(350), 1, + sym_filter, + [9810] = 2, + ACTIONS(957), 1, + sym__identifier, + ACTIONS(959), 1, + anon_sym_PERCENT_RBRACE, + [9817] = 2, + ACTIONS(961), 1, + sym__identifier, + ACTIONS(963), 1, + anon_sym_PERCENT_RBRACE, + [9824] = 2, + ACTIONS(965), 1, + anon_sym_DQUOTE, + ACTIONS(967), 1, + aux_sym_string_token2, + [9831] = 2, + ACTIONS(969), 1, anon_sym_SQUOTE, - ACTIONS(989), 1, + ACTIONS(971), 1, aux_sym_string_token1, - STATE(407), 1, - aux_sym_string_repeat1, - [10664] = 2, - ACTIONS(999), 1, - anon_sym_comment, - ACTIONS(1001), 1, + [9838] = 1, + ACTIONS(908), 1, + anon_sym_elif, + [9842] = 1, + ACTIONS(973), 1, + anon_sym_PERCENT_RBRACE, + [9846] = 1, + ACTIONS(975), 1, + anon_sym_PERCENT_RBRACE, + [9850] = 1, + ACTIONS(977), 1, + sym__paired_comment_content, + [9854] = 1, + ACTIONS(979), 1, + anon_sym_PERCENT_RBRACE, + [9858] = 1, + ACTIONS(981), 1, + anon_sym_PERCENT_RBRACE, + [9862] = 1, + ACTIONS(983), 1, + anon_sym_PERCENT_RBRACE, + [9866] = 1, + ACTIONS(985), 1, + anon_sym_PERCENT_RBRACE, + [9870] = 1, + ACTIONS(987), 1, + anon_sym_PERCENT_RBRACE, + [9874] = 1, + ACTIONS(989), 1, + anon_sym_PERCENT_RBRACE, + [9878] = 1, + ACTIONS(991), 1, + anon_sym_PERCENT_RBRACE, + [9882] = 1, + ACTIONS(993), 1, anon_sym_endcomment, - [10671] = 2, - ACTIONS(999), 1, - anon_sym_comment, - ACTIONS(1003), 1, + [9886] = 1, + ACTIONS(995), 1, + anon_sym_PERCENT_RBRACE, + [9890] = 1, + ACTIONS(997), 1, anon_sym_endcomment, - [10678] = 2, + [9894] = 1, ACTIONS(999), 1, - anon_sym_comment, + sym__identifier, + [9898] = 1, + ACTIONS(1001), 1, + anon_sym_LBRACE_PERCENT, + [9902] = 1, + ACTIONS(1003), 1, + anon_sym_PERCENT_RBRACE, + [9906] = 1, ACTIONS(1005), 1, anon_sym_endcomment, - [10685] = 1, - ACTIONS(816), 2, - anon_sym_LBRACE_PERCENT, - aux_sym_unpaired_comment_token1, - [10690] = 2, - ACTIONS(999), 1, - anon_sym_comment, + [9910] = 1, ACTIONS(1007), 1, - anon_sym_endcomment, - [10697] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9914] = 1, ACTIONS(1009), 1, - anon_sym_endcomment, - [10704] = 2, + anon_sym_PERCENT_RBRACE, + [9918] = 1, ACTIONS(1011), 1, - sym__identifier, + anon_sym_PERCENT_RBRACE, + [9922] = 1, ACTIONS(1013), 1, anon_sym_PERCENT_RBRACE, - [10711] = 2, - ACTIONS(999), 1, - anon_sym_comment, + [9926] = 1, ACTIONS(1015), 1, - anon_sym_endcomment, - [10718] = 1, - ACTIONS(756), 2, - anon_sym_LBRACE_PERCENT, - aux_sym_unpaired_comment_token1, - [10723] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9930] = 1, ACTIONS(1017), 1, - anon_sym_endcomment, - [10730] = 1, - ACTIONS(760), 2, - anon_sym_LBRACE_PERCENT, - aux_sym_unpaired_comment_token1, - [10735] = 1, - ACTIONS(726), 2, - anon_sym_LBRACE_PERCENT, - aux_sym_unpaired_comment_token1, - [10740] = 2, + anon_sym_PERCENT_RBRACE, + [9934] = 1, ACTIONS(1019), 1, - anon_sym_SQUOTE, + anon_sym_PERCENT_RBRACE, + [9938] = 1, ACTIONS(1021), 1, - aux_sym_string_token1, - [10747] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9942] = 1, ACTIONS(1023), 1, - anon_sym_endcomment, - [10754] = 1, - ACTIONS(792), 2, - anon_sym_LBRACE_PERCENT, - aux_sym_unpaired_comment_token1, - [10759] = 2, + sym__paired_comment_content, + [9946] = 1, ACTIONS(1025), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE_RBRACE, + [9950] = 1, ACTIONS(1027), 1, - aux_sym_string_token2, - [10766] = 1, - ACTIONS(796), 2, - anon_sym_LBRACE_PERCENT, - aux_sym_unpaired_comment_token1, - [10771] = 2, + anon_sym_PERCENT_RBRACE, + [9954] = 1, ACTIONS(1029), 1, - sym__identifier, + anon_sym_PERCENT_RBRACE, + [9958] = 1, ACTIONS(1031), 1, anon_sym_PERCENT_RBRACE, - [10778] = 2, - ACTIONS(999), 1, - anon_sym_comment, + [9962] = 1, ACTIONS(1033), 1, - anon_sym_endcomment, - [10785] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9966] = 1, ACTIONS(1035), 1, - anon_sym_endcomment, - [10792] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9970] = 1, ACTIONS(1037), 1, - anon_sym_endcomment, - [10799] = 2, - ACTIONS(999), 1, - anon_sym_comment, + ts_builtin_sym_end, + [9974] = 1, ACTIONS(1039), 1, - anon_sym_endcomment, - [10806] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_RBRACE_RBRACE, + [9978] = 1, ACTIONS(1041), 1, - anon_sym_endcomment, - [10813] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9982] = 1, ACTIONS(1043), 1, - anon_sym_endcomment, - [10820] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9986] = 1, ACTIONS(1045), 1, - anon_sym_endcomment, - [10827] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9990] = 1, ACTIONS(1047), 1, - anon_sym_endcomment, - [10834] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9994] = 1, ACTIONS(1049), 1, - anon_sym_endcomment, - [10841] = 2, - ACTIONS(999), 1, - anon_sym_comment, + anon_sym_PERCENT_RBRACE, + [9998] = 1, ACTIONS(1051), 1, - anon_sym_endcomment, - [10848] = 2, + anon_sym_LBRACE_PERCENT, + [10002] = 1, ACTIONS(1053), 1, - sym__identifier, + anon_sym_PERCENT_RBRACE, + [10006] = 1, ACTIONS(1055), 1, anon_sym_PERCENT_RBRACE, - [10855] = 1, + [10010] = 1, ACTIONS(1057), 1, anon_sym_PERCENT_RBRACE, - [10859] = 1, + [10014] = 1, ACTIONS(1059), 1, - anon_sym_PERCENT_RBRACE, - [10863] = 1, - ACTIONS(999), 1, - anon_sym_comment, - [10867] = 1, + anon_sym_LBRACE_PERCENT, + [10018] = 1, ACTIONS(1061), 1, - anon_sym_PERCENT_RBRACE, - [10871] = 1, + sym__paired_comment_content, + [10022] = 1, ACTIONS(1063), 1, - anon_sym_PERCENT_RBRACE, - [10875] = 1, + anon_sym_LBRACE_PERCENT, + [10026] = 1, ACTIONS(1065), 1, - anon_sym_PERCENT_RBRACE, - [10879] = 1, + sym__paired_comment_content, + [10030] = 1, ACTIONS(1067), 1, - anon_sym_PERCENT_RBRACE, - [10883] = 1, + anon_sym_endcomment, + [10034] = 1, ACTIONS(1069), 1, anon_sym_PERCENT_RBRACE, - [10887] = 1, + [10038] = 1, ACTIONS(1071), 1, anon_sym_PERCENT_RBRACE, - [10891] = 1, + [10042] = 1, ACTIONS(1073), 1, anon_sym_PERCENT_RBRACE, - [10895] = 1, - ACTIONS(1075), 1, - anon_sym_PERCENT_RBRACE, - [10899] = 1, - ACTIONS(1077), 1, - anon_sym_PERCENT_RBRACE, - [10903] = 1, - ACTIONS(1079), 1, - anon_sym_PERCENT_RBRACE, - [10907] = 1, - ACTIONS(923), 1, - anon_sym_elif, - [10911] = 1, - ACTIONS(1081), 1, - anon_sym_PERCENT_RBRACE, - [10915] = 1, - ACTIONS(1083), 1, - anon_sym_PERCENT_RBRACE, - [10919] = 1, - ACTIONS(1085), 1, - anon_sym_PERCENT_RBRACE, - [10923] = 1, - ACTIONS(1087), 1, - anon_sym_PERCENT_RBRACE, - [10927] = 1, - ACTIONS(1089), 1, - anon_sym_PERCENT_RBRACE, - [10931] = 1, - ACTIONS(1091), 1, - anon_sym_PERCENT_RBRACE, - [10935] = 1, - ACTIONS(1093), 1, - anon_sym_PERCENT_RBRACE, - [10939] = 1, - ACTIONS(1095), 1, - anon_sym_PERCENT_RBRACE, - [10943] = 1, - ACTIONS(1097), 1, - anon_sym_RBRACE_RBRACE, - [10947] = 1, - ACTIONS(1099), 1, - anon_sym_PERCENT_RBRACE, - [10951] = 1, - ACTIONS(1101), 1, - sym__identifier, - [10955] = 1, - ACTIONS(1103), 1, - anon_sym_PERCENT_RBRACE, - [10959] = 1, - ACTIONS(1105), 1, - anon_sym_PERCENT_RBRACE, - [10963] = 1, - ACTIONS(1107), 1, - anon_sym_PERCENT_RBRACE, - [10967] = 1, - ACTIONS(1109), 1, - anon_sym_PERCENT_RBRACE, - [10971] = 1, - ACTIONS(1111), 1, - anon_sym_PERCENT_RBRACE, - [10975] = 1, - ACTIONS(1113), 1, - anon_sym_PERCENT_RBRACE, - [10979] = 1, - ACTIONS(1115), 1, - ts_builtin_sym_end, - [10983] = 1, - ACTIONS(1117), 1, - anon_sym_PERCENT_RBRACE, - [10987] = 1, - ACTIONS(1119), 1, - anon_sym_PERCENT_RBRACE, - [10991] = 1, - ACTIONS(1121), 1, - anon_sym_PERCENT_RBRACE, - [10995] = 1, - ACTIONS(1123), 1, - anon_sym_PERCENT_RBRACE, - [10999] = 1, - ACTIONS(1125), 1, - anon_sym_PERCENT_RBRACE, - [11003] = 1, - ACTIONS(1127), 1, - anon_sym_PERCENT_RBRACE, - [11007] = 1, - ACTIONS(1129), 1, - anon_sym_PERCENT_RBRACE, - [11011] = 1, - ACTIONS(1131), 1, - anon_sym_PERCENT_RBRACE, - [11015] = 1, - ACTIONS(1133), 1, - anon_sym_RBRACE_RBRACE, - [11019] = 1, - ACTIONS(1135), 1, - anon_sym_PERCENT_RBRACE, - [11023] = 1, - ACTIONS(1137), 1, - anon_sym_PERCENT_RBRACE, - [11027] = 1, - ACTIONS(1139), 1, - anon_sym_PERCENT_RBRACE, - [11031] = 1, - ACTIONS(1141), 1, - anon_sym_PERCENT_RBRACE, - [11035] = 1, - ACTIONS(1143), 1, - anon_sym_PERCENT_RBRACE, - [11039] = 1, - ACTIONS(1145), 1, - anon_sym_PERCENT_RBRACE, - [11043] = 1, - ACTIONS(1147), 1, - anon_sym_PERCENT_RBRACE, - [11047] = 1, - ACTIONS(1149), 1, - anon_sym_PERCENT_RBRACE, - [11051] = 1, - ACTIONS(1151), 1, - anon_sym_PERCENT_RBRACE, - [11055] = 1, - ACTIONS(1153), 1, - anon_sym_PERCENT_RBRACE, - [11059] = 1, - ACTIONS(1155), 1, - anon_sym_PERCENT_RBRACE, - [11063] = 1, - ACTIONS(1157), 1, - anon_sym_PERCENT_RBRACE, - [11067] = 1, - ACTIONS(1159), 1, - anon_sym_PERCENT_RBRACE, - [11071] = 1, - ACTIONS(1161), 1, - anon_sym_PERCENT_RBRACE, - [11075] = 1, - ACTIONS(1163), 1, - anon_sym_PERCENT_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -11450,1065 +10367,952 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(19)] = 599, [SMALL_STATE(20)] = 637, [SMALL_STATE(21)] = 675, - [SMALL_STATE(22)] = 711, - [SMALL_STATE(23)] = 749, - [SMALL_STATE(24)] = 787, - [SMALL_STATE(25)] = 811, - [SMALL_STATE(26)] = 837, - [SMALL_STATE(27)] = 865, - [SMALL_STATE(28)] = 893, - [SMALL_STATE(29)] = 921, - [SMALL_STATE(30)] = 959, - [SMALL_STATE(31)] = 995, - [SMALL_STATE(32)] = 1031, - [SMALL_STATE(33)] = 1059, - [SMALL_STATE(34)] = 1097, - [SMALL_STATE(35)] = 1135, - [SMALL_STATE(36)] = 1171, - [SMALL_STATE(37)] = 1209, - [SMALL_STATE(38)] = 1247, - [SMALL_STATE(39)] = 1285, - [SMALL_STATE(40)] = 1313, - [SMALL_STATE(41)] = 1351, - [SMALL_STATE(42)] = 1389, - [SMALL_STATE(43)] = 1427, - [SMALL_STATE(44)] = 1465, - [SMALL_STATE(45)] = 1503, - [SMALL_STATE(46)] = 1527, - [SMALL_STATE(47)] = 1565, - [SMALL_STATE(48)] = 1603, - [SMALL_STATE(49)] = 1641, - [SMALL_STATE(50)] = 1679, - [SMALL_STATE(51)] = 1717, - [SMALL_STATE(52)] = 1755, - [SMALL_STATE(53)] = 1793, - [SMALL_STATE(54)] = 1831, - [SMALL_STATE(55)] = 1869, - [SMALL_STATE(56)] = 1907, - [SMALL_STATE(57)] = 1943, - [SMALL_STATE(58)] = 1979, - [SMALL_STATE(59)] = 2015, - [SMALL_STATE(60)] = 2053, - [SMALL_STATE(61)] = 2089, - [SMALL_STATE(62)] = 2127, - [SMALL_STATE(63)] = 2165, - [SMALL_STATE(64)] = 2203, - [SMALL_STATE(65)] = 2241, - [SMALL_STATE(66)] = 2279, - [SMALL_STATE(67)] = 2317, - [SMALL_STATE(68)] = 2355, - [SMALL_STATE(69)] = 2393, - [SMALL_STATE(70)] = 2431, - [SMALL_STATE(71)] = 2469, - [SMALL_STATE(72)] = 2507, - [SMALL_STATE(73)] = 2545, - [SMALL_STATE(74)] = 2583, - [SMALL_STATE(75)] = 2621, - [SMALL_STATE(76)] = 2659, - [SMALL_STATE(77)] = 2697, - [SMALL_STATE(78)] = 2735, - [SMALL_STATE(79)] = 2773, - [SMALL_STATE(80)] = 2811, - [SMALL_STATE(81)] = 2834, - [SMALL_STATE(82)] = 2857, - [SMALL_STATE(83)] = 2880, - [SMALL_STATE(84)] = 2903, - [SMALL_STATE(85)] = 2933, - [SMALL_STATE(86)] = 2963, - [SMALL_STATE(87)] = 2993, - [SMALL_STATE(88)] = 3023, - [SMALL_STATE(89)] = 3053, - [SMALL_STATE(90)] = 3083, - [SMALL_STATE(91)] = 3113, - [SMALL_STATE(92)] = 3143, - [SMALL_STATE(93)] = 3173, - [SMALL_STATE(94)] = 3203, - [SMALL_STATE(95)] = 3230, - [SMALL_STATE(96)] = 3257, - [SMALL_STATE(97)] = 3284, - [SMALL_STATE(98)] = 3311, - [SMALL_STATE(99)] = 3338, - [SMALL_STATE(100)] = 3363, - [SMALL_STATE(101)] = 3390, - [SMALL_STATE(102)] = 3417, - [SMALL_STATE(103)] = 3444, - [SMALL_STATE(104)] = 3471, - [SMALL_STATE(105)] = 3498, - [SMALL_STATE(106)] = 3525, - [SMALL_STATE(107)] = 3552, - [SMALL_STATE(108)] = 3573, - [SMALL_STATE(109)] = 3600, - [SMALL_STATE(110)] = 3627, - [SMALL_STATE(111)] = 3654, - [SMALL_STATE(112)] = 3681, - [SMALL_STATE(113)] = 3708, - [SMALL_STATE(114)] = 3735, - [SMALL_STATE(115)] = 3762, - [SMALL_STATE(116)] = 3789, - [SMALL_STATE(117)] = 3816, + [SMALL_STATE(22)] = 713, + [SMALL_STATE(23)] = 751, + [SMALL_STATE(24)] = 775, + [SMALL_STATE(25)] = 801, + [SMALL_STATE(26)] = 829, + [SMALL_STATE(27)] = 857, + [SMALL_STATE(28)] = 885, + [SMALL_STATE(29)] = 923, + [SMALL_STATE(30)] = 951, + [SMALL_STATE(31)] = 989, + [SMALL_STATE(32)] = 1027, + [SMALL_STATE(33)] = 1065, + [SMALL_STATE(34)] = 1103, + [SMALL_STATE(35)] = 1141, + [SMALL_STATE(36)] = 1169, + [SMALL_STATE(37)] = 1207, + [SMALL_STATE(38)] = 1245, + [SMALL_STATE(39)] = 1283, + [SMALL_STATE(40)] = 1321, + [SMALL_STATE(41)] = 1359, + [SMALL_STATE(42)] = 1383, + [SMALL_STATE(43)] = 1421, + [SMALL_STATE(44)] = 1459, + [SMALL_STATE(45)] = 1497, + [SMALL_STATE(46)] = 1535, + [SMALL_STATE(47)] = 1573, + [SMALL_STATE(48)] = 1611, + [SMALL_STATE(49)] = 1649, + [SMALL_STATE(50)] = 1687, + [SMALL_STATE(51)] = 1725, + [SMALL_STATE(52)] = 1763, + [SMALL_STATE(53)] = 1801, + [SMALL_STATE(54)] = 1839, + [SMALL_STATE(55)] = 1877, + [SMALL_STATE(56)] = 1915, + [SMALL_STATE(57)] = 1953, + [SMALL_STATE(58)] = 1991, + [SMALL_STATE(59)] = 2029, + [SMALL_STATE(60)] = 2067, + [SMALL_STATE(61)] = 2105, + [SMALL_STATE(62)] = 2143, + [SMALL_STATE(63)] = 2181, + [SMALL_STATE(64)] = 2219, + [SMALL_STATE(65)] = 2257, + [SMALL_STATE(66)] = 2295, + [SMALL_STATE(67)] = 2333, + [SMALL_STATE(68)] = 2371, + [SMALL_STATE(69)] = 2409, + [SMALL_STATE(70)] = 2447, + [SMALL_STATE(71)] = 2485, + [SMALL_STATE(72)] = 2523, + [SMALL_STATE(73)] = 2558, + [SMALL_STATE(74)] = 2593, + [SMALL_STATE(75)] = 2628, + [SMALL_STATE(76)] = 2663, + [SMALL_STATE(77)] = 2686, + [SMALL_STATE(78)] = 2721, + [SMALL_STATE(79)] = 2756, + [SMALL_STATE(80)] = 2779, + [SMALL_STATE(81)] = 2802, + [SMALL_STATE(82)] = 2825, + [SMALL_STATE(83)] = 2860, + [SMALL_STATE(84)] = 2895, + [SMALL_STATE(85)] = 2924, + [SMALL_STATE(86)] = 2953, + [SMALL_STATE(87)] = 2982, + [SMALL_STATE(88)] = 3011, + [SMALL_STATE(89)] = 3040, + [SMALL_STATE(90)] = 3069, + [SMALL_STATE(91)] = 3098, + [SMALL_STATE(92)] = 3127, + [SMALL_STATE(93)] = 3156, + [SMALL_STATE(94)] = 3181, + [SMALL_STATE(95)] = 3210, + [SMALL_STATE(96)] = 3231, + [SMALL_STATE(97)] = 3257, + [SMALL_STATE(98)] = 3283, + [SMALL_STATE(99)] = 3309, + [SMALL_STATE(100)] = 3335, + [SMALL_STATE(101)] = 3361, + [SMALL_STATE(102)] = 3387, + [SMALL_STATE(103)] = 3413, + [SMALL_STATE(104)] = 3439, + [SMALL_STATE(105)] = 3465, + [SMALL_STATE(106)] = 3511, + [SMALL_STATE(107)] = 3537, + [SMALL_STATE(108)] = 3563, + [SMALL_STATE(109)] = 3589, + [SMALL_STATE(110)] = 3615, + [SMALL_STATE(111)] = 3641, + [SMALL_STATE(112)] = 3667, + [SMALL_STATE(113)] = 3693, + [SMALL_STATE(114)] = 3719, + [SMALL_STATE(115)] = 3745, + [SMALL_STATE(116)] = 3771, + [SMALL_STATE(117)] = 3797, [SMALL_STATE(118)] = 3843, - [SMALL_STATE(119)] = 3870, - [SMALL_STATE(120)] = 3897, - [SMALL_STATE(121)] = 3924, - [SMALL_STATE(122)] = 3951, - [SMALL_STATE(123)] = 3978, - [SMALL_STATE(124)] = 4005, - [SMALL_STATE(125)] = 4032, - [SMALL_STATE(126)] = 4059, - [SMALL_STATE(127)] = 4086, - [SMALL_STATE(128)] = 4113, - [SMALL_STATE(129)] = 4140, - [SMALL_STATE(130)] = 4167, - [SMALL_STATE(131)] = 4194, - [SMALL_STATE(132)] = 4221, - [SMALL_STATE(133)] = 4248, - [SMALL_STATE(134)] = 4275, - [SMALL_STATE(135)] = 4302, - [SMALL_STATE(136)] = 4329, - [SMALL_STATE(137)] = 4356, - [SMALL_STATE(138)] = 4383, - [SMALL_STATE(139)] = 4410, - [SMALL_STATE(140)] = 4437, - [SMALL_STATE(141)] = 4464, - [SMALL_STATE(142)] = 4491, - [SMALL_STATE(143)] = 4518, - [SMALL_STATE(144)] = 4545, - [SMALL_STATE(145)] = 4572, - [SMALL_STATE(146)] = 4599, - [SMALL_STATE(147)] = 4626, - [SMALL_STATE(148)] = 4653, - [SMALL_STATE(149)] = 4680, - [SMALL_STATE(150)] = 4707, - [SMALL_STATE(151)] = 4734, - [SMALL_STATE(152)] = 4761, - [SMALL_STATE(153)] = 4788, - [SMALL_STATE(154)] = 4815, - [SMALL_STATE(155)] = 4842, - [SMALL_STATE(156)] = 4869, - [SMALL_STATE(157)] = 4896, - [SMALL_STATE(158)] = 4923, - [SMALL_STATE(159)] = 4950, - [SMALL_STATE(160)] = 4977, - [SMALL_STATE(161)] = 5004, - [SMALL_STATE(162)] = 5031, - [SMALL_STATE(163)] = 5058, - [SMALL_STATE(164)] = 5085, - [SMALL_STATE(165)] = 5112, - [SMALL_STATE(166)] = 5139, - [SMALL_STATE(167)] = 5166, - [SMALL_STATE(168)] = 5193, - [SMALL_STATE(169)] = 5220, - [SMALL_STATE(170)] = 5247, - [SMALL_STATE(171)] = 5274, - [SMALL_STATE(172)] = 5301, - [SMALL_STATE(173)] = 5328, - [SMALL_STATE(174)] = 5355, - [SMALL_STATE(175)] = 5382, - [SMALL_STATE(176)] = 5409, - [SMALL_STATE(177)] = 5436, - [SMALL_STATE(178)] = 5463, - [SMALL_STATE(179)] = 5490, - [SMALL_STATE(180)] = 5517, - [SMALL_STATE(181)] = 5544, - [SMALL_STATE(182)] = 5571, - [SMALL_STATE(183)] = 5598, - [SMALL_STATE(184)] = 5625, - [SMALL_STATE(185)] = 5652, - [SMALL_STATE(186)] = 5679, - [SMALL_STATE(187)] = 5706, - [SMALL_STATE(188)] = 5733, - [SMALL_STATE(189)] = 5760, - [SMALL_STATE(190)] = 5787, - [SMALL_STATE(191)] = 5814, - [SMALL_STATE(192)] = 5860, - [SMALL_STATE(193)] = 5906, - [SMALL_STATE(194)] = 5952, - [SMALL_STATE(195)] = 5998, - [SMALL_STATE(196)] = 6044, - [SMALL_STATE(197)] = 6090, - [SMALL_STATE(198)] = 6133, - [SMALL_STATE(199)] = 6176, - [SMALL_STATE(200)] = 6219, - [SMALL_STATE(201)] = 6262, - [SMALL_STATE(202)] = 6305, - [SMALL_STATE(203)] = 6348, - [SMALL_STATE(204)] = 6367, - [SMALL_STATE(205)] = 6407, - [SMALL_STATE(206)] = 6447, - [SMALL_STATE(207)] = 6487, - [SMALL_STATE(208)] = 6527, - [SMALL_STATE(209)] = 6567, - [SMALL_STATE(210)] = 6607, - [SMALL_STATE(211)] = 6647, - [SMALL_STATE(212)] = 6687, - [SMALL_STATE(213)] = 6727, - [SMALL_STATE(214)] = 6767, - [SMALL_STATE(215)] = 6807, - [SMALL_STATE(216)] = 6847, - [SMALL_STATE(217)] = 6887, - [SMALL_STATE(218)] = 6927, - [SMALL_STATE(219)] = 6967, - [SMALL_STATE(220)] = 7007, - [SMALL_STATE(221)] = 7047, - [SMALL_STATE(222)] = 7087, - [SMALL_STATE(223)] = 7127, - [SMALL_STATE(224)] = 7167, - [SMALL_STATE(225)] = 7207, - [SMALL_STATE(226)] = 7247, - [SMALL_STATE(227)] = 7287, - [SMALL_STATE(228)] = 7327, - [SMALL_STATE(229)] = 7367, - [SMALL_STATE(230)] = 7407, - [SMALL_STATE(231)] = 7447, - [SMALL_STATE(232)] = 7487, - [SMALL_STATE(233)] = 7527, - [SMALL_STATE(234)] = 7567, - [SMALL_STATE(235)] = 7607, - [SMALL_STATE(236)] = 7647, - [SMALL_STATE(237)] = 7687, - [SMALL_STATE(238)] = 7727, - [SMALL_STATE(239)] = 7767, - [SMALL_STATE(240)] = 7807, - [SMALL_STATE(241)] = 7847, - [SMALL_STATE(242)] = 7887, - [SMALL_STATE(243)] = 7927, - [SMALL_STATE(244)] = 7967, - [SMALL_STATE(245)] = 8007, - [SMALL_STATE(246)] = 8047, - [SMALL_STATE(247)] = 8087, - [SMALL_STATE(248)] = 8127, - [SMALL_STATE(249)] = 8167, - [SMALL_STATE(250)] = 8207, - [SMALL_STATE(251)] = 8247, - [SMALL_STATE(252)] = 8287, - [SMALL_STATE(253)] = 8327, - [SMALL_STATE(254)] = 8367, - [SMALL_STATE(255)] = 8407, - [SMALL_STATE(256)] = 8447, - [SMALL_STATE(257)] = 8487, - [SMALL_STATE(258)] = 8527, - [SMALL_STATE(259)] = 8567, - [SMALL_STATE(260)] = 8607, - [SMALL_STATE(261)] = 8647, - [SMALL_STATE(262)] = 8687, - [SMALL_STATE(263)] = 8727, - [SMALL_STATE(264)] = 8767, - [SMALL_STATE(265)] = 8807, - [SMALL_STATE(266)] = 8847, - [SMALL_STATE(267)] = 8887, - [SMALL_STATE(268)] = 8927, - [SMALL_STATE(269)] = 8967, - [SMALL_STATE(270)] = 9007, - [SMALL_STATE(271)] = 9044, - [SMALL_STATE(272)] = 9081, - [SMALL_STATE(273)] = 9100, - [SMALL_STATE(274)] = 9119, - [SMALL_STATE(275)] = 9138, - [SMALL_STATE(276)] = 9157, - [SMALL_STATE(277)] = 9176, - [SMALL_STATE(278)] = 9195, - [SMALL_STATE(279)] = 9211, - [SMALL_STATE(280)] = 9221, - [SMALL_STATE(281)] = 9231, - [SMALL_STATE(282)] = 9241, - [SMALL_STATE(283)] = 9251, - [SMALL_STATE(284)] = 9265, - [SMALL_STATE(285)] = 9275, - [SMALL_STATE(286)] = 9285, - [SMALL_STATE(287)] = 9299, - [SMALL_STATE(288)] = 9315, - [SMALL_STATE(289)] = 9325, - [SMALL_STATE(290)] = 9335, - [SMALL_STATE(291)] = 9345, - [SMALL_STATE(292)] = 9361, - [SMALL_STATE(293)] = 9371, - [SMALL_STATE(294)] = 9387, - [SMALL_STATE(295)] = 9397, - [SMALL_STATE(296)] = 9407, - [SMALL_STATE(297)] = 9417, - [SMALL_STATE(298)] = 9427, - [SMALL_STATE(299)] = 9437, - [SMALL_STATE(300)] = 9447, - [SMALL_STATE(301)] = 9457, - [SMALL_STATE(302)] = 9471, - [SMALL_STATE(303)] = 9481, - [SMALL_STATE(304)] = 9497, - [SMALL_STATE(305)] = 9513, - [SMALL_STATE(306)] = 9529, - [SMALL_STATE(307)] = 9539, - [SMALL_STATE(308)] = 9549, - [SMALL_STATE(309)] = 9559, - [SMALL_STATE(310)] = 9569, - [SMALL_STATE(311)] = 9579, - [SMALL_STATE(312)] = 9589, - [SMALL_STATE(313)] = 9599, - [SMALL_STATE(314)] = 9609, - [SMALL_STATE(315)] = 9625, - [SMALL_STATE(316)] = 9635, - [SMALL_STATE(317)] = 9645, - [SMALL_STATE(318)] = 9655, - [SMALL_STATE(319)] = 9665, - [SMALL_STATE(320)] = 9681, - [SMALL_STATE(321)] = 9697, - [SMALL_STATE(322)] = 9713, - [SMALL_STATE(323)] = 9729, - [SMALL_STATE(324)] = 9742, - [SMALL_STATE(325)] = 9751, - [SMALL_STATE(326)] = 9760, - [SMALL_STATE(327)] = 9769, - [SMALL_STATE(328)] = 9778, - [SMALL_STATE(329)] = 9787, - [SMALL_STATE(330)] = 9800, - [SMALL_STATE(331)] = 9809, - [SMALL_STATE(332)] = 9822, - [SMALL_STATE(333)] = 9833, - [SMALL_STATE(334)] = 9846, - [SMALL_STATE(335)] = 9857, - [SMALL_STATE(336)] = 9870, - [SMALL_STATE(337)] = 9879, - [SMALL_STATE(338)] = 9890, - [SMALL_STATE(339)] = 9903, - [SMALL_STATE(340)] = 9912, - [SMALL_STATE(341)] = 9921, - [SMALL_STATE(342)] = 9934, - [SMALL_STATE(343)] = 9947, - [SMALL_STATE(344)] = 9956, - [SMALL_STATE(345)] = 9965, - [SMALL_STATE(346)] = 9974, - [SMALL_STATE(347)] = 9983, - [SMALL_STATE(348)] = 9992, - [SMALL_STATE(349)] = 10005, - [SMALL_STATE(350)] = 10018, - [SMALL_STATE(351)] = 10027, - [SMALL_STATE(352)] = 10036, - [SMALL_STATE(353)] = 10045, - [SMALL_STATE(354)] = 10058, - [SMALL_STATE(355)] = 10067, - [SMALL_STATE(356)] = 10076, - [SMALL_STATE(357)] = 10085, - [SMALL_STATE(358)] = 10094, - [SMALL_STATE(359)] = 10103, - [SMALL_STATE(360)] = 10112, - [SMALL_STATE(361)] = 10121, - [SMALL_STATE(362)] = 10130, - [SMALL_STATE(363)] = 10143, - [SMALL_STATE(364)] = 10152, - [SMALL_STATE(365)] = 10161, - [SMALL_STATE(366)] = 10170, - [SMALL_STATE(367)] = 10179, - [SMALL_STATE(368)] = 10188, - [SMALL_STATE(369)] = 10197, - [SMALL_STATE(370)] = 10206, - [SMALL_STATE(371)] = 10215, - [SMALL_STATE(372)] = 10224, - [SMALL_STATE(373)] = 10233, - [SMALL_STATE(374)] = 10246, - [SMALL_STATE(375)] = 10256, - [SMALL_STATE(376)] = 10266, - [SMALL_STATE(377)] = 10276, - [SMALL_STATE(378)] = 10286, - [SMALL_STATE(379)] = 10296, - [SMALL_STATE(380)] = 10306, - [SMALL_STATE(381)] = 10316, - [SMALL_STATE(382)] = 10326, - [SMALL_STATE(383)] = 10336, - [SMALL_STATE(384)] = 10346, - [SMALL_STATE(385)] = 10356, - [SMALL_STATE(386)] = 10366, - [SMALL_STATE(387)] = 10376, - [SMALL_STATE(388)] = 10386, - [SMALL_STATE(389)] = 10396, - [SMALL_STATE(390)] = 10406, - [SMALL_STATE(391)] = 10416, - [SMALL_STATE(392)] = 10426, - [SMALL_STATE(393)] = 10436, - [SMALL_STATE(394)] = 10446, - [SMALL_STATE(395)] = 10456, - [SMALL_STATE(396)] = 10466, - [SMALL_STATE(397)] = 10476, - [SMALL_STATE(398)] = 10482, - [SMALL_STATE(399)] = 10492, - [SMALL_STATE(400)] = 10498, - [SMALL_STATE(401)] = 10508, - [SMALL_STATE(402)] = 10518, - [SMALL_STATE(403)] = 10528, - [SMALL_STATE(404)] = 10538, - [SMALL_STATE(405)] = 10548, - [SMALL_STATE(406)] = 10558, - [SMALL_STATE(407)] = 10568, - [SMALL_STATE(408)] = 10578, - [SMALL_STATE(409)] = 10588, - [SMALL_STATE(410)] = 10598, - [SMALL_STATE(411)] = 10604, - [SMALL_STATE(412)] = 10614, - [SMALL_STATE(413)] = 10624, - [SMALL_STATE(414)] = 10634, - [SMALL_STATE(415)] = 10644, - [SMALL_STATE(416)] = 10654, - [SMALL_STATE(417)] = 10664, - [SMALL_STATE(418)] = 10671, - [SMALL_STATE(419)] = 10678, - [SMALL_STATE(420)] = 10685, - [SMALL_STATE(421)] = 10690, - [SMALL_STATE(422)] = 10697, - [SMALL_STATE(423)] = 10704, - [SMALL_STATE(424)] = 10711, - [SMALL_STATE(425)] = 10718, - [SMALL_STATE(426)] = 10723, - [SMALL_STATE(427)] = 10730, - [SMALL_STATE(428)] = 10735, - [SMALL_STATE(429)] = 10740, - [SMALL_STATE(430)] = 10747, - [SMALL_STATE(431)] = 10754, - [SMALL_STATE(432)] = 10759, - [SMALL_STATE(433)] = 10766, - [SMALL_STATE(434)] = 10771, - [SMALL_STATE(435)] = 10778, - [SMALL_STATE(436)] = 10785, - [SMALL_STATE(437)] = 10792, - [SMALL_STATE(438)] = 10799, - [SMALL_STATE(439)] = 10806, - [SMALL_STATE(440)] = 10813, - [SMALL_STATE(441)] = 10820, - [SMALL_STATE(442)] = 10827, - [SMALL_STATE(443)] = 10834, - [SMALL_STATE(444)] = 10841, - [SMALL_STATE(445)] = 10848, - [SMALL_STATE(446)] = 10855, - [SMALL_STATE(447)] = 10859, - [SMALL_STATE(448)] = 10863, - [SMALL_STATE(449)] = 10867, - [SMALL_STATE(450)] = 10871, - [SMALL_STATE(451)] = 10875, - [SMALL_STATE(452)] = 10879, - [SMALL_STATE(453)] = 10883, - [SMALL_STATE(454)] = 10887, - [SMALL_STATE(455)] = 10891, - [SMALL_STATE(456)] = 10895, - [SMALL_STATE(457)] = 10899, - [SMALL_STATE(458)] = 10903, - [SMALL_STATE(459)] = 10907, - [SMALL_STATE(460)] = 10911, - [SMALL_STATE(461)] = 10915, - [SMALL_STATE(462)] = 10919, - [SMALL_STATE(463)] = 10923, - [SMALL_STATE(464)] = 10927, - [SMALL_STATE(465)] = 10931, - [SMALL_STATE(466)] = 10935, - [SMALL_STATE(467)] = 10939, - [SMALL_STATE(468)] = 10943, - [SMALL_STATE(469)] = 10947, - [SMALL_STATE(470)] = 10951, - [SMALL_STATE(471)] = 10955, - [SMALL_STATE(472)] = 10959, - [SMALL_STATE(473)] = 10963, - [SMALL_STATE(474)] = 10967, - [SMALL_STATE(475)] = 10971, - [SMALL_STATE(476)] = 10975, - [SMALL_STATE(477)] = 10979, - [SMALL_STATE(478)] = 10983, - [SMALL_STATE(479)] = 10987, - [SMALL_STATE(480)] = 10991, - [SMALL_STATE(481)] = 10995, - [SMALL_STATE(482)] = 10999, - [SMALL_STATE(483)] = 11003, - [SMALL_STATE(484)] = 11007, - [SMALL_STATE(485)] = 11011, - [SMALL_STATE(486)] = 11015, - [SMALL_STATE(487)] = 11019, - [SMALL_STATE(488)] = 11023, - [SMALL_STATE(489)] = 11027, - [SMALL_STATE(490)] = 11031, - [SMALL_STATE(491)] = 11035, - [SMALL_STATE(492)] = 11039, - [SMALL_STATE(493)] = 11043, - [SMALL_STATE(494)] = 11047, - [SMALL_STATE(495)] = 11051, - [SMALL_STATE(496)] = 11055, - [SMALL_STATE(497)] = 11059, - [SMALL_STATE(498)] = 11063, - [SMALL_STATE(499)] = 11067, - [SMALL_STATE(500)] = 11071, - [SMALL_STATE(501)] = 11075, + [SMALL_STATE(119)] = 3869, + [SMALL_STATE(120)] = 3895, + [SMALL_STATE(121)] = 3921, + [SMALL_STATE(122)] = 3947, + [SMALL_STATE(123)] = 3973, + [SMALL_STATE(124)] = 3999, + [SMALL_STATE(125)] = 4025, + [SMALL_STATE(126)] = 4051, + [SMALL_STATE(127)] = 4077, + [SMALL_STATE(128)] = 4123, + [SMALL_STATE(129)] = 4149, + [SMALL_STATE(130)] = 4175, + [SMALL_STATE(131)] = 4221, + [SMALL_STATE(132)] = 4267, + [SMALL_STATE(133)] = 4313, + [SMALL_STATE(134)] = 4339, + [SMALL_STATE(135)] = 4365, + [SMALL_STATE(136)] = 4391, + [SMALL_STATE(137)] = 4417, + [SMALL_STATE(138)] = 4443, + [SMALL_STATE(139)] = 4469, + [SMALL_STATE(140)] = 4495, + [SMALL_STATE(141)] = 4521, + [SMALL_STATE(142)] = 4547, + [SMALL_STATE(143)] = 4573, + [SMALL_STATE(144)] = 4599, + [SMALL_STATE(145)] = 4625, + [SMALL_STATE(146)] = 4651, + [SMALL_STATE(147)] = 4677, + [SMALL_STATE(148)] = 4703, + [SMALL_STATE(149)] = 4729, + [SMALL_STATE(150)] = 4755, + [SMALL_STATE(151)] = 4781, + [SMALL_STATE(152)] = 4807, + [SMALL_STATE(153)] = 4833, + [SMALL_STATE(154)] = 4859, + [SMALL_STATE(155)] = 4885, + [SMALL_STATE(156)] = 4911, + [SMALL_STATE(157)] = 4937, + [SMALL_STATE(158)] = 4963, + [SMALL_STATE(159)] = 4989, + [SMALL_STATE(160)] = 5015, + [SMALL_STATE(161)] = 5041, + [SMALL_STATE(162)] = 5067, + [SMALL_STATE(163)] = 5093, + [SMALL_STATE(164)] = 5119, + [SMALL_STATE(165)] = 5145, + [SMALL_STATE(166)] = 5171, + [SMALL_STATE(167)] = 5197, + [SMALL_STATE(168)] = 5223, + [SMALL_STATE(169)] = 5249, + [SMALL_STATE(170)] = 5275, + [SMALL_STATE(171)] = 5301, + [SMALL_STATE(172)] = 5327, + [SMALL_STATE(173)] = 5353, + [SMALL_STATE(174)] = 5379, + [SMALL_STATE(175)] = 5405, + [SMALL_STATE(176)] = 5431, + [SMALL_STATE(177)] = 5457, + [SMALL_STATE(178)] = 5483, + [SMALL_STATE(179)] = 5509, + [SMALL_STATE(180)] = 5535, + [SMALL_STATE(181)] = 5561, + [SMALL_STATE(182)] = 5587, + [SMALL_STATE(183)] = 5613, + [SMALL_STATE(184)] = 5639, + [SMALL_STATE(185)] = 5665, + [SMALL_STATE(186)] = 5691, + [SMALL_STATE(187)] = 5717, + [SMALL_STATE(188)] = 5743, + [SMALL_STATE(189)] = 5769, + [SMALL_STATE(190)] = 5795, + [SMALL_STATE(191)] = 5821, + [SMALL_STATE(192)] = 5847, + [SMALL_STATE(193)] = 5873, + [SMALL_STATE(194)] = 5899, + [SMALL_STATE(195)] = 5925, + [SMALL_STATE(196)] = 5951, + [SMALL_STATE(197)] = 5977, + [SMALL_STATE(198)] = 6020, + [SMALL_STATE(199)] = 6063, + [SMALL_STATE(200)] = 6082, + [SMALL_STATE(201)] = 6125, + [SMALL_STATE(202)] = 6168, + [SMALL_STATE(203)] = 6211, + [SMALL_STATE(204)] = 6254, + [SMALL_STATE(205)] = 6294, + [SMALL_STATE(206)] = 6334, + [SMALL_STATE(207)] = 6374, + [SMALL_STATE(208)] = 6414, + [SMALL_STATE(209)] = 6454, + [SMALL_STATE(210)] = 6494, + [SMALL_STATE(211)] = 6534, + [SMALL_STATE(212)] = 6574, + [SMALL_STATE(213)] = 6614, + [SMALL_STATE(214)] = 6654, + [SMALL_STATE(215)] = 6694, + [SMALL_STATE(216)] = 6734, + [SMALL_STATE(217)] = 6774, + [SMALL_STATE(218)] = 6814, + [SMALL_STATE(219)] = 6854, + [SMALL_STATE(220)] = 6894, + [SMALL_STATE(221)] = 6934, + [SMALL_STATE(222)] = 6974, + [SMALL_STATE(223)] = 7014, + [SMALL_STATE(224)] = 7054, + [SMALL_STATE(225)] = 7094, + [SMALL_STATE(226)] = 7134, + [SMALL_STATE(227)] = 7174, + [SMALL_STATE(228)] = 7214, + [SMALL_STATE(229)] = 7254, + [SMALL_STATE(230)] = 7294, + [SMALL_STATE(231)] = 7334, + [SMALL_STATE(232)] = 7374, + [SMALL_STATE(233)] = 7414, + [SMALL_STATE(234)] = 7454, + [SMALL_STATE(235)] = 7494, + [SMALL_STATE(236)] = 7534, + [SMALL_STATE(237)] = 7574, + [SMALL_STATE(238)] = 7614, + [SMALL_STATE(239)] = 7654, + [SMALL_STATE(240)] = 7694, + [SMALL_STATE(241)] = 7734, + [SMALL_STATE(242)] = 7774, + [SMALL_STATE(243)] = 7814, + [SMALL_STATE(244)] = 7854, + [SMALL_STATE(245)] = 7894, + [SMALL_STATE(246)] = 7934, + [SMALL_STATE(247)] = 7974, + [SMALL_STATE(248)] = 8014, + [SMALL_STATE(249)] = 8054, + [SMALL_STATE(250)] = 8094, + [SMALL_STATE(251)] = 8134, + [SMALL_STATE(252)] = 8174, + [SMALL_STATE(253)] = 8214, + [SMALL_STATE(254)] = 8254, + [SMALL_STATE(255)] = 8294, + [SMALL_STATE(256)] = 8334, + [SMALL_STATE(257)] = 8374, + [SMALL_STATE(258)] = 8414, + [SMALL_STATE(259)] = 8454, + [SMALL_STATE(260)] = 8494, + [SMALL_STATE(261)] = 8534, + [SMALL_STATE(262)] = 8574, + [SMALL_STATE(263)] = 8614, + [SMALL_STATE(264)] = 8654, + [SMALL_STATE(265)] = 8694, + [SMALL_STATE(266)] = 8734, + [SMALL_STATE(267)] = 8774, + [SMALL_STATE(268)] = 8814, + [SMALL_STATE(269)] = 8854, + [SMALL_STATE(270)] = 8894, + [SMALL_STATE(271)] = 8931, + [SMALL_STATE(272)] = 8968, + [SMALL_STATE(273)] = 8978, + [SMALL_STATE(274)] = 8988, + [SMALL_STATE(275)] = 9002, + [SMALL_STATE(276)] = 9012, + [SMALL_STATE(277)] = 9022, + [SMALL_STATE(278)] = 9032, + [SMALL_STATE(279)] = 9042, + [SMALL_STATE(280)] = 9056, + [SMALL_STATE(281)] = 9066, + [SMALL_STATE(282)] = 9076, + [SMALL_STATE(283)] = 9086, + [SMALL_STATE(284)] = 9096, + [SMALL_STATE(285)] = 9106, + [SMALL_STATE(286)] = 9116, + [SMALL_STATE(287)] = 9126, + [SMALL_STATE(288)] = 9136, + [SMALL_STATE(289)] = 9146, + [SMALL_STATE(290)] = 9156, + [SMALL_STATE(291)] = 9166, + [SMALL_STATE(292)] = 9180, + [SMALL_STATE(293)] = 9190, + [SMALL_STATE(294)] = 9200, + [SMALL_STATE(295)] = 9210, + [SMALL_STATE(296)] = 9220, + [SMALL_STATE(297)] = 9230, + [SMALL_STATE(298)] = 9240, + [SMALL_STATE(299)] = 9253, + [SMALL_STATE(300)] = 9262, + [SMALL_STATE(301)] = 9271, + [SMALL_STATE(302)] = 9280, + [SMALL_STATE(303)] = 9289, + [SMALL_STATE(304)] = 9298, + [SMALL_STATE(305)] = 9307, + [SMALL_STATE(306)] = 9316, + [SMALL_STATE(307)] = 9325, + [SMALL_STATE(308)] = 9334, + [SMALL_STATE(309)] = 9343, + [SMALL_STATE(310)] = 9352, + [SMALL_STATE(311)] = 9361, + [SMALL_STATE(312)] = 9370, + [SMALL_STATE(313)] = 9379, + [SMALL_STATE(314)] = 9388, + [SMALL_STATE(315)] = 9397, + [SMALL_STATE(316)] = 9406, + [SMALL_STATE(317)] = 9415, + [SMALL_STATE(318)] = 9424, + [SMALL_STATE(319)] = 9437, + [SMALL_STATE(320)] = 9446, + [SMALL_STATE(321)] = 9459, + [SMALL_STATE(322)] = 9468, + [SMALL_STATE(323)] = 9477, + [SMALL_STATE(324)] = 9486, + [SMALL_STATE(325)] = 9499, + [SMALL_STATE(326)] = 9512, + [SMALL_STATE(327)] = 9525, + [SMALL_STATE(328)] = 9534, + [SMALL_STATE(329)] = 9543, + [SMALL_STATE(330)] = 9552, + [SMALL_STATE(331)] = 9561, + [SMALL_STATE(332)] = 9570, + [SMALL_STATE(333)] = 9580, + [SMALL_STATE(334)] = 9590, + [SMALL_STATE(335)] = 9600, + [SMALL_STATE(336)] = 9610, + [SMALL_STATE(337)] = 9620, + [SMALL_STATE(338)] = 9630, + [SMALL_STATE(339)] = 9640, + [SMALL_STATE(340)] = 9650, + [SMALL_STATE(341)] = 9660, + [SMALL_STATE(342)] = 9670, + [SMALL_STATE(343)] = 9680, + [SMALL_STATE(344)] = 9690, + [SMALL_STATE(345)] = 9700, + [SMALL_STATE(346)] = 9710, + [SMALL_STATE(347)] = 9720, + [SMALL_STATE(348)] = 9730, + [SMALL_STATE(349)] = 9740, + [SMALL_STATE(350)] = 9750, + [SMALL_STATE(351)] = 9760, + [SMALL_STATE(352)] = 9770, + [SMALL_STATE(353)] = 9780, + [SMALL_STATE(354)] = 9790, + [SMALL_STATE(355)] = 9800, + [SMALL_STATE(356)] = 9810, + [SMALL_STATE(357)] = 9817, + [SMALL_STATE(358)] = 9824, + [SMALL_STATE(359)] = 9831, + [SMALL_STATE(360)] = 9838, + [SMALL_STATE(361)] = 9842, + [SMALL_STATE(362)] = 9846, + [SMALL_STATE(363)] = 9850, + [SMALL_STATE(364)] = 9854, + [SMALL_STATE(365)] = 9858, + [SMALL_STATE(366)] = 9862, + [SMALL_STATE(367)] = 9866, + [SMALL_STATE(368)] = 9870, + [SMALL_STATE(369)] = 9874, + [SMALL_STATE(370)] = 9878, + [SMALL_STATE(371)] = 9882, + [SMALL_STATE(372)] = 9886, + [SMALL_STATE(373)] = 9890, + [SMALL_STATE(374)] = 9894, + [SMALL_STATE(375)] = 9898, + [SMALL_STATE(376)] = 9902, + [SMALL_STATE(377)] = 9906, + [SMALL_STATE(378)] = 9910, + [SMALL_STATE(379)] = 9914, + [SMALL_STATE(380)] = 9918, + [SMALL_STATE(381)] = 9922, + [SMALL_STATE(382)] = 9926, + [SMALL_STATE(383)] = 9930, + [SMALL_STATE(384)] = 9934, + [SMALL_STATE(385)] = 9938, + [SMALL_STATE(386)] = 9942, + [SMALL_STATE(387)] = 9946, + [SMALL_STATE(388)] = 9950, + [SMALL_STATE(389)] = 9954, + [SMALL_STATE(390)] = 9958, + [SMALL_STATE(391)] = 9962, + [SMALL_STATE(392)] = 9966, + [SMALL_STATE(393)] = 9970, + [SMALL_STATE(394)] = 9974, + [SMALL_STATE(395)] = 9978, + [SMALL_STATE(396)] = 9982, + [SMALL_STATE(397)] = 9986, + [SMALL_STATE(398)] = 9990, + [SMALL_STATE(399)] = 9994, + [SMALL_STATE(400)] = 9998, + [SMALL_STATE(401)] = 10002, + [SMALL_STATE(402)] = 10006, + [SMALL_STATE(403)] = 10010, + [SMALL_STATE(404)] = 10014, + [SMALL_STATE(405)] = 10018, + [SMALL_STATE(406)] = 10022, + [SMALL_STATE(407)] = 10026, + [SMALL_STATE(408)] = 10030, + [SMALL_STATE(409)] = 10034, + [SMALL_STATE(410)] = 10038, + [SMALL_STATE(411)] = 10042, }; 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_template, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [13] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_argument, 1, 0, 0), [15] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_argument, 1, 0, 0), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [19] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_argument, 2, 0, 0), [21] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_argument, 2, 0, 0), [23] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filter_argument_repeat1, 2, 0, 0), [25] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_filter_argument_repeat1, 2, 0, 0), - [27] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filter_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [30] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [32] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [34] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [36] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [38] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [40] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [42] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [44] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [46] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [48] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [50] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [52] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [27] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filter_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [30] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [32] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [34] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [36] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [38] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [40] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [42] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [44] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [46] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [48] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [50] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [52] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), [54] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), [56] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [58] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [58] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [60] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, 0, 0), [62] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 2, 0, 0), - [64] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [70] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [72] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [78] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [80] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [82] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [84] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [92] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_name, 1, 0, 0), - [94] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_name, 1, 0, 0), - [96] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 1, 0, 0), - [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 1, 0, 0), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2, 0, 0), - [108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat3, 2, 0, 0), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2, 0, 0), SHIFT_REPEAT(396), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1, 0, 0), - [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, 0, 0), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 2, 0, 0), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_filter_argument, 2, 0, 0), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 3, 0, 6), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_filter_argument, 3, 0, 6), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 3, 0, 0), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 3, 0, 0), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 1, 0, 0), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [64] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [70] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [72] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [78] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_name, 1, 0, 0), + [86] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_name, 1, 0, 0), + [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 1, 0, 0), + [90] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 1, 0, 0), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [94] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [96] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2, 0, 0), + [100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat3, 2, 0, 0), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2, 0, 0), SHIFT_REPEAT(347), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2, 0, 0), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1, 0, 0), + [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, 0, 0), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 2, 0, 0), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_filter_argument, 2, 0, 0), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 3, 0, 0), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 3, 0, 0), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 3, 0, 4), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_filter_argument, 3, 0, 4), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 1, 0, 0), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 1, 0, 0), [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 1, 0, 0), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 0), SHIFT_REPEAT(271), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 0), SHIFT_REPEAT(270), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 2, 0, 0), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 2, 0, 0), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 4, 0, 2), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 4, 0, 2), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 2, 0, 0), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 2, 0, 0), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 3, 0, 2), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 3, 0, 2), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 3), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 3), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, 0, 0), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 3), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 3), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 6, 0, 4), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 6, 0, 4), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 7, 0, 5), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 7, 0, 5), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 5), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 5), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 5), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 5), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 7, 0, 5), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 7, 0, 5), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 6, 0, 3), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 6, 0, 3), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 7, 0, 7), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 7, 0, 7), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 7, 0, 8), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 7, 0, 8), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 8, 0, 9), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 8, 0, 9), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 9), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 9), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 3, 0, 0), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 3, 0, 0), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 9), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 9), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 8, 0, 9), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 8, 0, 9), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 8, 0, 10), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 8, 0, 10), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 8, 0, 11), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 8, 0, 11), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 9, 0, 12), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 9, 0, 12), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 12), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 12), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 12), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 12), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 9, 0, 12), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 9, 0, 12), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 9, 0, 13), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 9, 0, 13), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 14), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 14), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 14), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 14), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 11, 0, 15), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 11, 0, 15), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 4, 0, 0), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 4, 0, 0), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2, 0, 1), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat2, 1, 0, 1), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2, 0, 0), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 3, 0, 0), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 3, 0, 0), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 3, 0, 0), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 3, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 3, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 3, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 4, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 4, 0, 0), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2, 0, 0), SHIFT_REPEAT(272), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2, 0, 0), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 4, 0, 0), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 4, 0, 0), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paired_comment_repeat1, 2, 0, 1), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paired_comment_repeat1, 1, 0, 1), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(432), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1115] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 2, 0, 0), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 2, 0, 0), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 7, 0, 3), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 7, 0, 3), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 3), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 3), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 5), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 5), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 5), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 5), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 7, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 7, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 8, 0, 5), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 8, 0, 5), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 8, 0, 0), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 8, 0, 0), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 9, 0, 6), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 9, 0, 6), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 6), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 6), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 8, 0, 5), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 8, 0, 5), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 6), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 6), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 9, 0, 6), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 9, 0, 6), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 7), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 7), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 7), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 7), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 11, 0, 8), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 11, 0, 8), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 6, 0, 2), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 6, 0, 2), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, 0, 0), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, 0, 0), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 2), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 2), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 4, 0, 1), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 4, 0, 1), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 2), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 2), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 3, 0, 1), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 3, 0, 1), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 7, 0, 3), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 7, 0, 3), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 3), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 3), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 3, 0, 0), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 3, 0, 0), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 3, 0, 0), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 3, 0, 0), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 4, 0, 0), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 4, 0, 0), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 4, 0, 0), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 4, 0, 0), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 3, 0, 0), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 3, 0, 0), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(358), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1037] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__paired_comment_content = 0, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__paired_comment_content] = sym__paired_comment_content, +}; + +static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__paired_comment_content] = true, + }, }; #ifdef __cplusplus extern "C" { #endif +void *tree_sitter_htmldjango_external_scanner_create(void); +void tree_sitter_htmldjango_external_scanner_destroy(void *); +bool tree_sitter_htmldjango_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_htmldjango_external_scanner_serialize(void *, char *); +void tree_sitter_htmldjango_external_scanner_deserialize(void *, const char *, unsigned); + #ifdef TREE_SITTER_HIDE_SYMBOLS #define TS_PUBLIC #elif defined(_WIN32) @@ -12543,6 +11347,15 @@ TS_PUBLIC const TSLanguage *tree_sitter_htmldjango(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym__identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_htmldjango_external_scanner_create, + tree_sitter_htmldjango_external_scanner_destroy, + tree_sitter_htmldjango_external_scanner_scan, + tree_sitter_htmldjango_external_scanner_serialize, + tree_sitter_htmldjango_external_scanner_deserialize, + }, .primary_state_ids = ts_primary_state_ids, .name = "htmldjango", .max_reserved_word_set_size = 0, diff --git a/src/scanner.c b/src/scanner.c new file mode 100644 index 0000000..617e583 --- /dev/null +++ b/src/scanner.c @@ -0,0 +1,73 @@ +#include "tree_sitter/parser.h" +#include + +enum TokenType { + PAIRED_COMMENT_CONTENT +}; + +static void advance(TSLexer *lexer) { + lexer->advance(lexer, false); +} + +static bool scan_str(TSLexer *lexer, const char *str) { + for (int i = 0; str[i] != '\0'; i++) { + if (lexer->lookahead == str[i]) { + advance(lexer); + } else { + return false; + } + } + return true; +} + +bool tree_sitter_htmldjango_external_scanner_scan( + void *payload, + TSLexer *lexer, + const bool *valid_symbols +) { + if (valid_symbols[PAIRED_COMMENT_CONTENT]) { + int depth = 0; + while (lexer->lookahead != 0) { + lexer->mark_end(lexer); + + if (lexer->lookahead == '{') { + advance(lexer); + + if (lexer->lookahead == '%') { + advance(lexer); + + while (iswspace(lexer->lookahead)) advance(lexer); + + if (scan_str(lexer, "comment")) { + depth++; + continue; + } + + if (scan_str(lexer, "endcomment")) { + if (depth == 0) { + lexer->result_symbol = PAIRED_COMMENT_CONTENT; + return true; + } + depth--; + } + } + } + + advance(lexer); + } + } + + return false; +} + +void *tree_sitter_htmldjango_external_scanner_create() { + return NULL; +} + +void tree_sitter_htmldjango_external_scanner_destroy(void *payload) {} + +unsigned tree_sitter_htmldjango_external_scanner_serialize(void *payload, char *buffer) { + return 0; +} + +void tree_sitter_htmldjango_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) {}