diff --git a/package.json b/package.json index b32290e..8817857 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "nan": "^2.11.1" }, "devDependencies": { - "tree-sitter-cli": "^0.15.14" + "tree-sitter-cli": "^0.16.1" }, "scripts": { "test": "tree-sitter test && tree-sitter parse examples/*.css --quiet --time", diff --git a/src/parser.c b/src/parser.c index 68e10f7..2fa8667 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,8 +5,9 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 10 +#define LANGUAGE_VERSION 11 #define STATE_COUNT 278 +#define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 102 #define ALIAS_COUNT 10 #define TOKEN_COUNT 52 @@ -243,6 +244,121 @@ static const char *ts_symbol_names[] = { [alias_sym_tag_name] = "tag_name", }; +static TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [anon_sym_ATimport] = anon_sym_ATimport, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_ATmedia] = anon_sym_ATmedia, + [anon_sym_ATcharset] = anon_sym_ATcharset, + [anon_sym_ATnamespace] = anon_sym_ATnamespace, + [anon_sym_ATkeyframes] = anon_sym_ATkeyframes, + [aux_sym_keyframes_statement_token1] = sym_at_keyword, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [sym_from] = sym_from, + [sym_to] = sym_to, + [anon_sym_ATsupports] = anon_sym_ATsupports, + [sym_nesting_selector] = sym_nesting_selector, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_TILDE_EQ] = anon_sym_TILDE_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_DOLLAR_EQ] = anon_sym_DOLLAR_EQ, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [sym_important] = sym_important, + [anon_sym_LPAREN2] = anon_sym_LPAREN2, + [anon_sym_and] = anon_sym_and, + [anon_sym_or] = anon_sym_or, + [anon_sym_not] = anon_sym_not, + [anon_sym_only] = anon_sym_only, + [anon_sym_selector] = anon_sym_selector, + [aux_sym_color_value_token1] = aux_sym_color_value_token1, + [sym_string_value] = sym_string_value, + [aux_sym_integer_value_token1] = aux_sym_integer_value_token1, + [aux_sym_float_value_token1] = aux_sym_float_value_token1, + [sym_unit] = sym_unit, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [sym_identifier] = sym_identifier, + [sym_at_keyword] = sym_at_keyword, + [sym_comment] = sym_comment, + [sym_plain_value] = sym_plain_value, + [sym__descendant_operator] = sym__descendant_operator, + [sym_stylesheet] = sym_stylesheet, + [sym_import_statement] = sym_import_statement, + [sym_media_statement] = sym_media_statement, + [sym_charset_statement] = sym_charset_statement, + [sym_namespace_statement] = sym_namespace_statement, + [sym_keyframes_statement] = sym_keyframes_statement, + [sym_keyframe_block_list] = sym_keyframe_block_list, + [sym_keyframe_block] = sym_keyframe_block, + [sym_supports_statement] = sym_supports_statement, + [sym_at_rule] = sym_at_rule, + [sym_rule_set] = sym_rule_set, + [sym_selectors] = sym_selectors, + [sym_block] = sym_block, + [sym__selector] = sym__selector, + [sym_universal_selector] = sym_universal_selector, + [sym_class_selector] = sym_class_selector, + [sym_pseudo_class_selector] = sym_pseudo_class_selector, + [sym_pseudo_element_selector] = sym_pseudo_element_selector, + [sym_id_selector] = sym_id_selector, + [sym_attribute_selector] = sym_attribute_selector, + [sym_child_selector] = sym_child_selector, + [sym_descendant_selector] = sym_descendant_selector, + [sym_sibling_selector] = sym_sibling_selector, + [sym_adjacent_sibling_selector] = sym_adjacent_sibling_selector, + [sym_pseudo_class_arguments] = sym_arguments, + [sym_declaration] = sym_declaration, + [sym_last_declaration] = sym_declaration, + [sym__query] = sym__query, + [sym_feature_query] = sym_feature_query, + [sym_parenthesized_query] = sym_parenthesized_query, + [sym_binary_query] = sym_binary_query, + [sym_unary_query] = sym_unary_query, + [sym_selector_query] = sym_selector_query, + [sym__value] = sym__value, + [sym_parenthesized_value] = sym_parenthesized_value, + [sym_color_value] = sym_color_value, + [sym_integer_value] = sym_integer_value, + [sym_float_value] = sym_float_value, + [sym_call_expression] = sym_call_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_arguments] = sym_arguments, + [aux_sym_stylesheet_repeat1] = aux_sym_stylesheet_repeat1, + [aux_sym_import_statement_repeat1] = aux_sym_import_statement_repeat1, + [aux_sym_keyframe_block_list_repeat1] = aux_sym_keyframe_block_list_repeat1, + [aux_sym_selectors_repeat1] = aux_sym_selectors_repeat1, + [aux_sym_block_repeat1] = aux_sym_block_repeat1, + [aux_sym_pseudo_class_arguments_repeat1] = aux_sym_pseudo_class_arguments_repeat1, + [aux_sym_pseudo_class_arguments_repeat2] = aux_sym_pseudo_class_arguments_repeat2, + [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, + [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, + [alias_sym_attribute_name] = alias_sym_attribute_name, + [alias_sym_class_name] = alias_sym_class_name, + [alias_sym_feature_name] = alias_sym_feature_name, + [alias_sym_function_name] = alias_sym_function_name, + [alias_sym_id_name] = alias_sym_id_name, + [alias_sym_keyframes_name] = alias_sym_keyframes_name, + [alias_sym_keyword_query] = alias_sym_keyword_query, + [alias_sym_namespace_name] = alias_sym_namespace_name, + [alias_sym_property_name] = alias_sym_property_name, + [alias_sym_tag_name] = alias_sym_tag_name, +}; + static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, @@ -748,7 +864,7 @@ static TSSymbol ts_alias_sequences[17][MAX_ALIAS_SEQUENCE_LENGTH] = { static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); - eof = lookahead == 0; + eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(76); @@ -3269,7 +3385,7 @@ static bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { }, }; -static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { +static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_ATimport] = ACTIONS(1), @@ -3365,4091 +3481,5592 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_at_keyword] = ACTIONS(35), [sym_comment] = ACTIONS(3), }, - [2] = { - [sym_import_statement] = STATE(8), - [sym_media_statement] = STATE(8), - [sym_charset_statement] = STATE(8), - [sym_namespace_statement] = STATE(8), - [sym_keyframes_statement] = STATE(8), - [sym_supports_statement] = STATE(8), - [sym_at_rule] = STATE(8), - [sym_rule_set] = STATE(8), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(8), - [sym_last_declaration] = STATE(265), - [aux_sym_block_repeat1] = STATE(8), - [anon_sym_ATimport] = ACTIONS(37), - [anon_sym_ATmedia] = ACTIONS(39), - [anon_sym_ATcharset] = ACTIONS(41), - [anon_sym_ATnamespace] = ACTIONS(43), - [anon_sym_ATkeyframes] = ACTIONS(45), - [aux_sym_keyframes_statement_token1] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(47), - [anon_sym_ATsupports] = ACTIONS(49), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(51), - [sym_at_keyword] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - }, - [3] = { - [sym_import_statement] = STATE(2), - [sym_media_statement] = STATE(2), - [sym_charset_statement] = STATE(2), - [sym_namespace_statement] = STATE(2), - [sym_keyframes_statement] = STATE(2), - [sym_supports_statement] = STATE(2), - [sym_at_rule] = STATE(2), - [sym_rule_set] = STATE(2), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(2), - [sym_last_declaration] = STATE(248), - [aux_sym_block_repeat1] = STATE(2), - [anon_sym_ATimport] = ACTIONS(37), - [anon_sym_ATmedia] = ACTIONS(39), - [anon_sym_ATcharset] = ACTIONS(41), - [anon_sym_ATnamespace] = ACTIONS(43), - [anon_sym_ATkeyframes] = ACTIONS(45), - [aux_sym_keyframes_statement_token1] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_ATsupports] = ACTIONS(49), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(51), - [sym_at_keyword] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [sym_import_statement] = STATE(8), - [sym_media_statement] = STATE(8), - [sym_charset_statement] = STATE(8), - [sym_namespace_statement] = STATE(8), - [sym_keyframes_statement] = STATE(8), - [sym_supports_statement] = STATE(8), - [sym_at_rule] = STATE(8), - [sym_rule_set] = STATE(8), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(8), - [sym_last_declaration] = STATE(274), - [aux_sym_block_repeat1] = STATE(8), - [anon_sym_ATimport] = ACTIONS(37), - [anon_sym_ATmedia] = ACTIONS(39), - [anon_sym_ATcharset] = ACTIONS(41), - [anon_sym_ATnamespace] = ACTIONS(43), - [anon_sym_ATkeyframes] = ACTIONS(45), - [aux_sym_keyframes_statement_token1] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(57), - [anon_sym_ATsupports] = ACTIONS(49), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(51), - [sym_at_keyword] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - }, - [5] = { - [sym_import_statement] = STATE(8), - [sym_media_statement] = STATE(8), - [sym_charset_statement] = STATE(8), - [sym_namespace_statement] = STATE(8), - [sym_keyframes_statement] = STATE(8), - [sym_supports_statement] = STATE(8), - [sym_at_rule] = STATE(8), - [sym_rule_set] = STATE(8), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(8), - [sym_last_declaration] = STATE(256), - [aux_sym_block_repeat1] = STATE(8), - [anon_sym_ATimport] = ACTIONS(37), - [anon_sym_ATmedia] = ACTIONS(39), - [anon_sym_ATcharset] = ACTIONS(41), - [anon_sym_ATnamespace] = ACTIONS(43), - [anon_sym_ATkeyframes] = ACTIONS(45), - [aux_sym_keyframes_statement_token1] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(59), - [anon_sym_ATsupports] = ACTIONS(49), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(51), - [sym_at_keyword] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - }, - [6] = { - [sym_import_statement] = STATE(4), - [sym_media_statement] = STATE(4), - [sym_charset_statement] = STATE(4), - [sym_namespace_statement] = STATE(4), - [sym_keyframes_statement] = STATE(4), - [sym_supports_statement] = STATE(4), - [sym_at_rule] = STATE(4), - [sym_rule_set] = STATE(4), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(4), - [sym_last_declaration] = STATE(267), - [aux_sym_block_repeat1] = STATE(4), - [anon_sym_ATimport] = ACTIONS(37), - [anon_sym_ATmedia] = ACTIONS(39), - [anon_sym_ATcharset] = ACTIONS(41), - [anon_sym_ATnamespace] = ACTIONS(43), - [anon_sym_ATkeyframes] = ACTIONS(45), - [aux_sym_keyframes_statement_token1] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(61), - [anon_sym_ATsupports] = ACTIONS(49), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(51), - [sym_at_keyword] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - }, - [7] = { - [sym_import_statement] = STATE(5), - [sym_media_statement] = STATE(5), - [sym_charset_statement] = STATE(5), - [sym_namespace_statement] = STATE(5), - [sym_keyframes_statement] = STATE(5), - [sym_supports_statement] = STATE(5), - [sym_at_rule] = STATE(5), - [sym_rule_set] = STATE(5), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(5), - [sym_last_declaration] = STATE(262), - [aux_sym_block_repeat1] = STATE(5), - [anon_sym_ATimport] = ACTIONS(37), - [anon_sym_ATmedia] = ACTIONS(39), - [anon_sym_ATcharset] = ACTIONS(41), - [anon_sym_ATnamespace] = ACTIONS(43), - [anon_sym_ATkeyframes] = ACTIONS(45), - [aux_sym_keyframes_statement_token1] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_ATsupports] = ACTIONS(49), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(51), - [sym_at_keyword] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - }, - [8] = { - [sym_import_statement] = STATE(8), - [sym_media_statement] = STATE(8), - [sym_charset_statement] = STATE(8), - [sym_namespace_statement] = STATE(8), - [sym_keyframes_statement] = STATE(8), - [sym_supports_statement] = STATE(8), - [sym_at_rule] = STATE(8), - [sym_rule_set] = STATE(8), - [sym_selectors] = STATE(243), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(8), - [aux_sym_block_repeat1] = STATE(8), - [anon_sym_ATimport] = ACTIONS(65), - [anon_sym_ATmedia] = ACTIONS(68), - [anon_sym_ATcharset] = ACTIONS(71), - [anon_sym_ATnamespace] = ACTIONS(74), - [anon_sym_ATkeyframes] = ACTIONS(77), - [aux_sym_keyframes_statement_token1] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(80), - [anon_sym_ATsupports] = ACTIONS(82), - [sym_nesting_selector] = ACTIONS(85), - [anon_sym_STAR] = ACTIONS(88), - [anon_sym_DOT] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(94), - [anon_sym_COLON_COLON] = ACTIONS(97), - [anon_sym_POUND] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [sym_string_value] = ACTIONS(85), - [sym_identifier] = ACTIONS(106), - [sym_at_keyword] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [9] = { - [sym_import_statement] = STATE(10), - [sym_media_statement] = STATE(10), - [sym_charset_statement] = STATE(10), - [sym_namespace_statement] = STATE(10), - [sym_keyframes_statement] = STATE(10), - [sym_supports_statement] = STATE(10), - [sym_at_rule] = STATE(10), - [sym_rule_set] = STATE(10), - [sym_selectors] = STATE(241), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(10), - [aux_sym_stylesheet_repeat1] = STATE(10), - [ts_builtin_sym_end] = ACTIONS(112), - [anon_sym_ATimport] = ACTIONS(7), - [anon_sym_ATmedia] = ACTIONS(9), - [anon_sym_ATcharset] = ACTIONS(11), - [anon_sym_ATnamespace] = ACTIONS(13), - [anon_sym_ATkeyframes] = ACTIONS(15), - [aux_sym_keyframes_statement_token1] = ACTIONS(15), - [anon_sym_ATsupports] = ACTIONS(17), - [sym_nesting_selector] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(19), - [sym_identifier] = ACTIONS(33), - [sym_at_keyword] = ACTIONS(35), - [sym_comment] = ACTIONS(3), - }, - [10] = { - [sym_import_statement] = STATE(10), - [sym_media_statement] = STATE(10), - [sym_charset_statement] = STATE(10), - [sym_namespace_statement] = STATE(10), - [sym_keyframes_statement] = STATE(10), - [sym_supports_statement] = STATE(10), - [sym_at_rule] = STATE(10), - [sym_rule_set] = STATE(10), - [sym_selectors] = STATE(241), - [sym__selector] = STATE(141), - [sym_universal_selector] = STATE(141), - [sym_class_selector] = STATE(141), - [sym_pseudo_class_selector] = STATE(141), - [sym_pseudo_element_selector] = STATE(141), - [sym_id_selector] = STATE(141), - [sym_attribute_selector] = STATE(141), - [sym_child_selector] = STATE(141), - [sym_descendant_selector] = STATE(141), - [sym_sibling_selector] = STATE(141), - [sym_adjacent_sibling_selector] = STATE(141), - [sym_declaration] = STATE(10), - [aux_sym_stylesheet_repeat1] = STATE(10), - [ts_builtin_sym_end] = ACTIONS(114), - [anon_sym_ATimport] = ACTIONS(116), - [anon_sym_ATmedia] = ACTIONS(119), - [anon_sym_ATcharset] = ACTIONS(122), - [anon_sym_ATnamespace] = ACTIONS(125), - [anon_sym_ATkeyframes] = ACTIONS(128), - [aux_sym_keyframes_statement_token1] = ACTIONS(128), - [anon_sym_ATsupports] = ACTIONS(131), - [sym_nesting_selector] = ACTIONS(134), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_POUND] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(152), - [sym_string_value] = ACTIONS(134), - [sym_identifier] = ACTIONS(155), - [sym_at_keyword] = ACTIONS(158), - [sym_comment] = ACTIONS(3), - }, - [11] = { - [sym__selector] = STATE(143), - [sym_universal_selector] = STATE(143), - [sym_class_selector] = STATE(143), - [sym_pseudo_class_selector] = STATE(143), - [sym_pseudo_element_selector] = STATE(143), - [sym_id_selector] = STATE(143), - [sym_attribute_selector] = STATE(143), - [sym_child_selector] = STATE(143), - [sym_descendant_selector] = STATE(143), - [sym_sibling_selector] = STATE(143), - [sym_adjacent_sibling_selector] = STATE(143), - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(41), - [sym_nesting_selector] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RPAREN] = ACTIONS(167), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(171), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [12] = { - [sym__selector] = STATE(153), - [sym_universal_selector] = STATE(153), - [sym_class_selector] = STATE(153), - [sym_pseudo_class_selector] = STATE(153), - [sym_pseudo_element_selector] = STATE(153), - [sym_id_selector] = STATE(153), - [sym_attribute_selector] = STATE(153), - [sym_child_selector] = STATE(153), - [sym_descendant_selector] = STATE(153), - [sym_sibling_selector] = STATE(153), - [sym_adjacent_sibling_selector] = STATE(153), - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(81), - [sym_nesting_selector] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(171), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [13] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(27), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(193), - [sym_important] = ACTIONS(195), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(197), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_SLASH] = ACTIONS(193), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(201), - }, - [14] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(40), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(193), - [sym_important] = ACTIONS(203), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(197), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_SLASH] = ACTIONS(193), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(201), - }, - [15] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(35), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(193), - [sym_important] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(197), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_SLASH] = ACTIONS(193), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(201), - }, - [16] = { - [sym_arguments] = STATE(92), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(217), - [sym_string_value] = ACTIONS(211), - [aux_sym_integer_value_token1] = ACTIONS(217), - [aux_sym_float_value_token1] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_SLASH] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(217), - [sym__descendant_operator] = ACTIONS(209), - }, - [17] = { - [sym__selector] = STATE(140), - [sym_universal_selector] = STATE(140), - [sym_class_selector] = STATE(140), - [sym_pseudo_class_selector] = STATE(140), - [sym_pseudo_element_selector] = STATE(140), - [sym_id_selector] = STATE(140), - [sym_attribute_selector] = STATE(140), - [sym_child_selector] = STATE(140), - [sym_descendant_selector] = STATE(140), - [sym_sibling_selector] = STATE(140), - [sym_adjacent_sibling_selector] = STATE(140), - [sym_nesting_selector] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(219), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - }, - [18] = { - [sym__selector] = STATE(160), - [sym_universal_selector] = STATE(160), - [sym_class_selector] = STATE(160), - [sym_pseudo_class_selector] = STATE(160), - [sym_pseudo_element_selector] = STATE(160), - [sym_id_selector] = STATE(160), - [sym_attribute_selector] = STATE(160), - [sym_child_selector] = STATE(160), - [sym_descendant_selector] = STATE(160), - [sym_sibling_selector] = STATE(160), - [sym_adjacent_sibling_selector] = STATE(160), - [sym_nesting_selector] = ACTIONS(223), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(223), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - }, - [19] = { - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_DOT] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_COLON_COLON] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(225), - [anon_sym_LPAREN2] = ACTIONS(227), - [sym_string_value] = ACTIONS(227), - [aux_sym_integer_value_token1] = ACTIONS(231), - [aux_sym_float_value_token1] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(231), - [anon_sym_SLASH] = ACTIONS(231), - [sym_identifier] = ACTIONS(231), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(231), - [sym__descendant_operator] = ACTIONS(225), - }, - [20] = { - [sym__selector] = STATE(169), - [sym_universal_selector] = STATE(169), - [sym_class_selector] = STATE(169), - [sym_pseudo_class_selector] = STATE(169), - [sym_pseudo_element_selector] = STATE(169), - [sym_id_selector] = STATE(169), - [sym_attribute_selector] = STATE(169), - [sym_child_selector] = STATE(169), - [sym_descendant_selector] = STATE(169), - [sym_sibling_selector] = STATE(169), - [sym_adjacent_sibling_selector] = STATE(169), - [sym_nesting_selector] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(233), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - }, - [21] = { - [sym__selector] = STATE(126), - [sym_universal_selector] = STATE(126), - [sym_class_selector] = STATE(126), - [sym_pseudo_class_selector] = STATE(126), - [sym_pseudo_element_selector] = STATE(126), - [sym_id_selector] = STATE(126), - [sym_attribute_selector] = STATE(126), - [sym_child_selector] = STATE(126), - [sym_descendant_selector] = STATE(126), - [sym_sibling_selector] = STATE(126), - [sym_adjacent_sibling_selector] = STATE(126), - [sym_nesting_selector] = ACTIONS(235), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(235), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - }, - [22] = { - [sym__selector] = STATE(127), - [sym_universal_selector] = STATE(127), - [sym_class_selector] = STATE(127), - [sym_pseudo_class_selector] = STATE(127), - [sym_pseudo_element_selector] = STATE(127), - [sym_id_selector] = STATE(127), - [sym_attribute_selector] = STATE(127), - [sym_child_selector] = STATE(127), - [sym_descendant_selector] = STATE(127), - [sym_sibling_selector] = STATE(127), - [sym_adjacent_sibling_selector] = STATE(127), - [sym_nesting_selector] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(237), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - }, - [23] = { - [sym__selector] = STATE(128), - [sym_universal_selector] = STATE(128), - [sym_class_selector] = STATE(128), - [sym_pseudo_class_selector] = STATE(128), - [sym_pseudo_element_selector] = STATE(128), - [sym_id_selector] = STATE(128), - [sym_attribute_selector] = STATE(128), - [sym_child_selector] = STATE(128), - [sym_descendant_selector] = STATE(128), - [sym_sibling_selector] = STATE(128), - [sym_adjacent_sibling_selector] = STATE(128), - [sym_nesting_selector] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(25), - [anon_sym_COLON_COLON] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [sym_string_value] = ACTIONS(239), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - }, - [24] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [aux_sym_arguments_repeat1] = STATE(227), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [25] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [aux_sym_arguments_repeat1] = STATE(214), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [26] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(26), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_POUND] = ACTIONS(254), - [sym_important] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(257), - [sym_string_value] = ACTIONS(260), - [aux_sym_integer_value_token1] = ACTIONS(263), - [aux_sym_float_value_token1] = ACTIONS(266), - [sym_identifier] = ACTIONS(269), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(272), - }, - [27] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(26), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_POUND] = ACTIONS(191), - [sym_important] = ACTIONS(279), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(197), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(201), - }, - [28] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [aux_sym_arguments_repeat1] = STATE(223), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [29] = { - [anon_sym_ATimport] = ACTIONS(283), - [anon_sym_ATmedia] = ACTIONS(283), - [anon_sym_ATcharset] = ACTIONS(283), - [anon_sym_ATnamespace] = ACTIONS(283), - [anon_sym_ATkeyframes] = ACTIONS(283), - [aux_sym_keyframes_statement_token1] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_ATsupports] = ACTIONS(283), - [sym_nesting_selector] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(285), - [anon_sym_POUND] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(285), - [sym_string_value] = ACTIONS(285), - [sym_identifier] = ACTIONS(285), - [sym_at_keyword] = ACTIONS(283), - [sym_comment] = ACTIONS(3), - }, - [30] = { - [ts_builtin_sym_end] = ACTIONS(287), - [anon_sym_ATimport] = ACTIONS(289), - [anon_sym_ATmedia] = ACTIONS(289), - [anon_sym_ATcharset] = ACTIONS(289), - [anon_sym_ATnamespace] = ACTIONS(289), - [anon_sym_ATkeyframes] = ACTIONS(289), - [aux_sym_keyframes_statement_token1] = ACTIONS(289), - [anon_sym_ATsupports] = ACTIONS(289), - [sym_nesting_selector] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_DOT] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(287), - [anon_sym_POUND] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [sym_string_value] = ACTIONS(287), - [sym_identifier] = ACTIONS(287), - [sym_at_keyword] = ACTIONS(289), - [sym_comment] = ACTIONS(3), - }, - [31] = { - [ts_builtin_sym_end] = ACTIONS(291), - [anon_sym_ATimport] = ACTIONS(293), - [anon_sym_ATmedia] = ACTIONS(293), - [anon_sym_ATcharset] = ACTIONS(293), - [anon_sym_ATnamespace] = ACTIONS(293), - [anon_sym_ATkeyframes] = ACTIONS(293), - [aux_sym_keyframes_statement_token1] = ACTIONS(293), - [anon_sym_ATsupports] = ACTIONS(293), - [sym_nesting_selector] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_COLON_COLON] = ACTIONS(291), - [anon_sym_POUND] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(291), - [sym_string_value] = ACTIONS(291), - [sym_identifier] = ACTIONS(291), - [sym_at_keyword] = ACTIONS(293), - [sym_comment] = ACTIONS(3), - }, - [32] = { - [ts_builtin_sym_end] = ACTIONS(295), - [anon_sym_ATimport] = ACTIONS(297), - [anon_sym_ATmedia] = ACTIONS(297), - [anon_sym_ATcharset] = ACTIONS(297), - [anon_sym_ATnamespace] = ACTIONS(297), - [anon_sym_ATkeyframes] = ACTIONS(297), - [aux_sym_keyframes_statement_token1] = ACTIONS(297), - [anon_sym_ATsupports] = ACTIONS(297), - [sym_nesting_selector] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(295), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_COLON_COLON] = ACTIONS(295), - [anon_sym_POUND] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(295), - [sym_string_value] = ACTIONS(295), - [sym_identifier] = ACTIONS(295), - [sym_at_keyword] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - }, - [33] = { - [ts_builtin_sym_end] = ACTIONS(299), - [anon_sym_ATimport] = ACTIONS(301), - [anon_sym_ATmedia] = ACTIONS(301), - [anon_sym_ATcharset] = ACTIONS(301), - [anon_sym_ATnamespace] = ACTIONS(301), - [anon_sym_ATkeyframes] = ACTIONS(301), - [aux_sym_keyframes_statement_token1] = ACTIONS(301), - [anon_sym_ATsupports] = ACTIONS(301), - [sym_nesting_selector] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(299), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(299), - [anon_sym_POUND] = ACTIONS(299), - [anon_sym_LBRACK] = ACTIONS(299), - [sym_string_value] = ACTIONS(299), - [sym_identifier] = ACTIONS(299), - [sym_at_keyword] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - }, - [34] = { - [ts_builtin_sym_end] = ACTIONS(303), - [anon_sym_ATimport] = ACTIONS(305), - [anon_sym_ATmedia] = ACTIONS(305), - [anon_sym_ATcharset] = ACTIONS(305), - [anon_sym_ATnamespace] = ACTIONS(305), - [anon_sym_ATkeyframes] = ACTIONS(305), - [aux_sym_keyframes_statement_token1] = ACTIONS(305), - [anon_sym_ATsupports] = ACTIONS(305), - [sym_nesting_selector] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COLON] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(303), - [sym_string_value] = ACTIONS(303), - [sym_identifier] = ACTIONS(303), - [sym_at_keyword] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - }, - [35] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(26), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(307), - [anon_sym_POUND] = ACTIONS(191), - [sym_important] = ACTIONS(309), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(197), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(201), - }, - [36] = { - [ts_builtin_sym_end] = ACTIONS(311), - [anon_sym_ATimport] = ACTIONS(313), - [anon_sym_ATmedia] = ACTIONS(313), - [anon_sym_ATcharset] = ACTIONS(313), - [anon_sym_ATnamespace] = ACTIONS(313), - [anon_sym_ATkeyframes] = ACTIONS(313), - [aux_sym_keyframes_statement_token1] = ACTIONS(313), - [anon_sym_ATsupports] = ACTIONS(313), - [sym_nesting_selector] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_DOT] = ACTIONS(311), - [anon_sym_COLON] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(311), - [anon_sym_POUND] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(311), - [sym_string_value] = ACTIONS(311), - [sym_identifier] = ACTIONS(311), - [sym_at_keyword] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - }, - [37] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [anon_sym_COMMA] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_POUND] = ACTIONS(317), - [anon_sym_RPAREN] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(320), - [sym_string_value] = ACTIONS(323), - [aux_sym_integer_value_token1] = ACTIONS(326), - [aux_sym_float_value_token1] = ACTIONS(329), - [sym_identifier] = ACTIONS(332), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(335), - }, - [38] = { - [ts_builtin_sym_end] = ACTIONS(338), - [anon_sym_ATimport] = ACTIONS(340), - [anon_sym_ATmedia] = ACTIONS(340), - [anon_sym_ATcharset] = ACTIONS(340), - [anon_sym_ATnamespace] = ACTIONS(340), - [anon_sym_ATkeyframes] = ACTIONS(340), - [aux_sym_keyframes_statement_token1] = ACTIONS(340), - [anon_sym_ATsupports] = ACTIONS(340), - [sym_nesting_selector] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_POUND] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(338), - [sym_string_value] = ACTIONS(338), - [sym_identifier] = ACTIONS(338), - [sym_at_keyword] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - }, - [39] = { - [ts_builtin_sym_end] = ACTIONS(285), - [anon_sym_ATimport] = ACTIONS(283), - [anon_sym_ATmedia] = ACTIONS(283), - [anon_sym_ATcharset] = ACTIONS(283), - [anon_sym_ATnamespace] = ACTIONS(283), - [anon_sym_ATkeyframes] = ACTIONS(283), - [aux_sym_keyframes_statement_token1] = ACTIONS(283), - [anon_sym_ATsupports] = ACTIONS(283), - [sym_nesting_selector] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(285), - [anon_sym_POUND] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(285), - [sym_string_value] = ACTIONS(285), - [sym_identifier] = ACTIONS(285), - [sym_at_keyword] = ACTIONS(283), - [sym_comment] = ACTIONS(3), - }, - [40] = { - [sym__value] = STATE(100), - [sym_parenthesized_value] = STATE(100), - [sym_color_value] = STATE(100), - [sym_integer_value] = STATE(100), - [sym_float_value] = STATE(100), - [sym_call_expression] = STATE(100), - [sym_binary_expression] = STATE(100), - [aux_sym_declaration_repeat1] = STATE(26), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(191), - [sym_important] = ACTIONS(342), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(197), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(201), - }, - [41] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [aux_sym_pseudo_class_arguments_repeat2] = STATE(233), - [anon_sym_COMMA] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(346), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [42] = { - [ts_builtin_sym_end] = ACTIONS(348), - [anon_sym_ATimport] = ACTIONS(350), - [anon_sym_ATmedia] = ACTIONS(350), - [anon_sym_ATcharset] = ACTIONS(350), - [anon_sym_ATnamespace] = ACTIONS(350), - [anon_sym_ATkeyframes] = ACTIONS(350), - [aux_sym_keyframes_statement_token1] = ACTIONS(350), - [anon_sym_ATsupports] = ACTIONS(350), - [sym_nesting_selector] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(348), - [anon_sym_DOT] = ACTIONS(348), - [anon_sym_COLON] = ACTIONS(350), - [anon_sym_COLON_COLON] = ACTIONS(348), - [anon_sym_POUND] = ACTIONS(348), - [anon_sym_LBRACK] = ACTIONS(348), - [sym_string_value] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [sym_at_keyword] = ACTIONS(350), - [sym_comment] = ACTIONS(3), - }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(352), - [anon_sym_ATimport] = ACTIONS(354), - [anon_sym_ATmedia] = ACTIONS(354), - [anon_sym_ATcharset] = ACTIONS(354), - [anon_sym_ATnamespace] = ACTIONS(354), - [anon_sym_ATkeyframes] = ACTIONS(354), - [aux_sym_keyframes_statement_token1] = ACTIONS(354), - [anon_sym_ATsupports] = ACTIONS(354), - [sym_nesting_selector] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_COLON] = ACTIONS(354), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(352), - [anon_sym_LBRACK] = ACTIONS(352), - [sym_string_value] = ACTIONS(352), - [sym_identifier] = ACTIONS(352), - [sym_at_keyword] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - }, - [44] = { - [ts_builtin_sym_end] = ACTIONS(356), - [anon_sym_ATimport] = ACTIONS(358), - [anon_sym_ATmedia] = ACTIONS(358), - [anon_sym_ATcharset] = ACTIONS(358), - [anon_sym_ATnamespace] = ACTIONS(358), - [anon_sym_ATkeyframes] = ACTIONS(358), - [aux_sym_keyframes_statement_token1] = ACTIONS(358), - [anon_sym_ATsupports] = ACTIONS(358), - [sym_nesting_selector] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(358), - [anon_sym_COLON_COLON] = ACTIONS(356), - [anon_sym_POUND] = ACTIONS(356), - [anon_sym_LBRACK] = ACTIONS(356), - [sym_string_value] = ACTIONS(356), - [sym_identifier] = ACTIONS(356), - [sym_at_keyword] = ACTIONS(358), - [sym_comment] = ACTIONS(3), - }, - [45] = { - [ts_builtin_sym_end] = ACTIONS(360), - [anon_sym_ATimport] = ACTIONS(362), - [anon_sym_ATmedia] = ACTIONS(362), - [anon_sym_ATcharset] = ACTIONS(362), - [anon_sym_ATnamespace] = ACTIONS(362), - [anon_sym_ATkeyframes] = ACTIONS(362), - [aux_sym_keyframes_statement_token1] = ACTIONS(362), - [anon_sym_ATsupports] = ACTIONS(362), - [sym_nesting_selector] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_DOT] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_COLON_COLON] = ACTIONS(360), - [anon_sym_POUND] = ACTIONS(360), - [anon_sym_LBRACK] = ACTIONS(360), - [sym_string_value] = ACTIONS(360), - [sym_identifier] = ACTIONS(360), - [sym_at_keyword] = ACTIONS(362), - [sym_comment] = ACTIONS(3), - }, - [46] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(364), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(364), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(366), - [anon_sym_ATimport] = ACTIONS(368), - [anon_sym_ATmedia] = ACTIONS(368), - [anon_sym_ATcharset] = ACTIONS(368), - [anon_sym_ATnamespace] = ACTIONS(368), - [anon_sym_ATkeyframes] = ACTIONS(368), - [aux_sym_keyframes_statement_token1] = ACTIONS(368), - [anon_sym_ATsupports] = ACTIONS(368), - [sym_nesting_selector] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(366), - [anon_sym_POUND] = ACTIONS(366), - [anon_sym_LBRACK] = ACTIONS(366), - [sym_string_value] = ACTIONS(366), - [sym_identifier] = ACTIONS(366), - [sym_at_keyword] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(370), - [anon_sym_ATimport] = ACTIONS(372), - [anon_sym_ATmedia] = ACTIONS(372), - [anon_sym_ATcharset] = ACTIONS(372), - [anon_sym_ATnamespace] = ACTIONS(372), - [anon_sym_ATkeyframes] = ACTIONS(372), - [aux_sym_keyframes_statement_token1] = ACTIONS(372), - [anon_sym_ATsupports] = ACTIONS(372), - [sym_nesting_selector] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_COLON] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(370), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(370), - [sym_string_value] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [sym_at_keyword] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - }, - [49] = { - [ts_builtin_sym_end] = ACTIONS(374), - [anon_sym_ATimport] = ACTIONS(376), - [anon_sym_ATmedia] = ACTIONS(376), - [anon_sym_ATcharset] = ACTIONS(376), - [anon_sym_ATnamespace] = ACTIONS(376), - [anon_sym_ATkeyframes] = ACTIONS(376), - [aux_sym_keyframes_statement_token1] = ACTIONS(376), - [anon_sym_ATsupports] = ACTIONS(376), - [sym_nesting_selector] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(376), - [anon_sym_COLON_COLON] = ACTIONS(374), - [anon_sym_POUND] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [sym_string_value] = ACTIONS(374), - [sym_identifier] = ACTIONS(374), - [sym_at_keyword] = ACTIONS(376), - [sym_comment] = ACTIONS(3), - }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(378), - [anon_sym_ATimport] = ACTIONS(380), - [anon_sym_ATmedia] = ACTIONS(380), - [anon_sym_ATcharset] = ACTIONS(380), - [anon_sym_ATnamespace] = ACTIONS(380), - [anon_sym_ATkeyframes] = ACTIONS(380), - [aux_sym_keyframes_statement_token1] = ACTIONS(380), - [anon_sym_ATsupports] = ACTIONS(380), - [sym_nesting_selector] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_COLON] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_POUND] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), - [sym_string_value] = ACTIONS(378), - [sym_identifier] = ACTIONS(378), - [sym_at_keyword] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - }, - [51] = { - [anon_sym_ATimport] = ACTIONS(289), - [anon_sym_ATmedia] = ACTIONS(289), - [anon_sym_ATcharset] = ACTIONS(289), - [anon_sym_ATnamespace] = ACTIONS(289), - [anon_sym_ATkeyframes] = ACTIONS(289), - [aux_sym_keyframes_statement_token1] = ACTIONS(289), - [anon_sym_RBRACE] = ACTIONS(287), - [anon_sym_ATsupports] = ACTIONS(289), - [sym_nesting_selector] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_DOT] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(287), - [anon_sym_POUND] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [sym_string_value] = ACTIONS(287), - [sym_identifier] = ACTIONS(287), - [sym_at_keyword] = ACTIONS(289), - [sym_comment] = ACTIONS(3), - }, - [52] = { - [anon_sym_ATimport] = ACTIONS(382), - [anon_sym_ATmedia] = ACTIONS(382), - [anon_sym_ATcharset] = ACTIONS(382), - [anon_sym_ATnamespace] = ACTIONS(382), - [anon_sym_ATkeyframes] = ACTIONS(382), - [aux_sym_keyframes_statement_token1] = ACTIONS(382), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_ATsupports] = ACTIONS(382), - [sym_nesting_selector] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [sym_string_value] = ACTIONS(384), - [sym_identifier] = ACTIONS(384), - [sym_at_keyword] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(386), - [anon_sym_ATimport] = ACTIONS(388), - [anon_sym_ATmedia] = ACTIONS(388), - [anon_sym_ATcharset] = ACTIONS(388), - [anon_sym_ATnamespace] = ACTIONS(388), - [anon_sym_ATkeyframes] = ACTIONS(388), - [aux_sym_keyframes_statement_token1] = ACTIONS(388), - [anon_sym_ATsupports] = ACTIONS(388), - [sym_nesting_selector] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_COLON] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(386), - [sym_string_value] = ACTIONS(386), - [sym_identifier] = ACTIONS(386), - [sym_at_keyword] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(390), - [anon_sym_ATimport] = ACTIONS(392), - [anon_sym_ATmedia] = ACTIONS(392), - [anon_sym_ATcharset] = ACTIONS(392), - [anon_sym_ATnamespace] = ACTIONS(392), - [anon_sym_ATkeyframes] = ACTIONS(392), - [aux_sym_keyframes_statement_token1] = ACTIONS(392), - [anon_sym_ATsupports] = ACTIONS(392), - [sym_nesting_selector] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_POUND] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [sym_string_value] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [sym_at_keyword] = ACTIONS(392), - [sym_comment] = ACTIONS(3), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(394), - [anon_sym_ATimport] = ACTIONS(396), - [anon_sym_ATmedia] = ACTIONS(396), - [anon_sym_ATcharset] = ACTIONS(396), - [anon_sym_ATnamespace] = ACTIONS(396), - [anon_sym_ATkeyframes] = ACTIONS(396), - [aux_sym_keyframes_statement_token1] = ACTIONS(396), - [anon_sym_ATsupports] = ACTIONS(396), - [sym_nesting_selector] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [sym_string_value] = ACTIONS(394), - [sym_identifier] = ACTIONS(394), - [sym_at_keyword] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(398), - [anon_sym_ATimport] = ACTIONS(400), - [anon_sym_ATmedia] = ACTIONS(400), - [anon_sym_ATcharset] = ACTIONS(400), - [anon_sym_ATnamespace] = ACTIONS(400), - [anon_sym_ATkeyframes] = ACTIONS(400), - [aux_sym_keyframes_statement_token1] = ACTIONS(400), - [anon_sym_ATsupports] = ACTIONS(400), - [sym_nesting_selector] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_COLON] = ACTIONS(400), - [anon_sym_COLON_COLON] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(398), - [sym_string_value] = ACTIONS(398), - [sym_identifier] = ACTIONS(398), - [sym_at_keyword] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - }, - [57] = { - [sym_arguments] = STATE(92), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_POUND] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(217), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_important] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(217), - [sym_string_value] = ACTIONS(211), - [aux_sym_integer_value_token1] = ACTIONS(217), - [aux_sym_float_value_token1] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_SLASH] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(217), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(384), - [anon_sym_ATimport] = ACTIONS(382), - [anon_sym_ATmedia] = ACTIONS(382), - [anon_sym_ATcharset] = ACTIONS(382), - [anon_sym_ATnamespace] = ACTIONS(382), - [anon_sym_ATkeyframes] = ACTIONS(382), - [aux_sym_keyframes_statement_token1] = ACTIONS(382), - [anon_sym_ATsupports] = ACTIONS(382), - [sym_nesting_selector] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [sym_string_value] = ACTIONS(384), - [sym_identifier] = ACTIONS(384), - [sym_at_keyword] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - }, - [59] = { - [anon_sym_ATimport] = ACTIONS(372), - [anon_sym_ATmedia] = ACTIONS(372), - [anon_sym_ATcharset] = ACTIONS(372), - [anon_sym_ATnamespace] = ACTIONS(372), - [anon_sym_ATkeyframes] = ACTIONS(372), - [aux_sym_keyframes_statement_token1] = ACTIONS(372), - [anon_sym_RBRACE] = ACTIONS(370), - [anon_sym_ATsupports] = ACTIONS(372), - [sym_nesting_selector] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_COLON] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(370), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(370), - [sym_string_value] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [sym_at_keyword] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(402), - [anon_sym_ATimport] = ACTIONS(404), - [anon_sym_ATmedia] = ACTIONS(404), - [anon_sym_ATcharset] = ACTIONS(404), - [anon_sym_ATnamespace] = ACTIONS(404), - [anon_sym_ATkeyframes] = ACTIONS(404), - [aux_sym_keyframes_statement_token1] = ACTIONS(404), - [anon_sym_ATsupports] = ACTIONS(404), - [sym_nesting_selector] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(402), - [anon_sym_COLON] = ACTIONS(404), - [anon_sym_COLON_COLON] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [sym_string_value] = ACTIONS(402), - [sym_identifier] = ACTIONS(402), - [sym_at_keyword] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [anon_sym_ATimport] = ACTIONS(376), - [anon_sym_ATmedia] = ACTIONS(376), - [anon_sym_ATcharset] = ACTIONS(376), - [anon_sym_ATnamespace] = ACTIONS(376), - [anon_sym_ATkeyframes] = ACTIONS(376), - [aux_sym_keyframes_statement_token1] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(374), - [anon_sym_ATsupports] = ACTIONS(376), - [sym_nesting_selector] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(376), - [anon_sym_COLON_COLON] = ACTIONS(374), - [anon_sym_POUND] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [sym_string_value] = ACTIONS(374), - [sym_identifier] = ACTIONS(374), - [sym_at_keyword] = ACTIONS(376), - [sym_comment] = ACTIONS(3), - }, - [62] = { - [anon_sym_ATimport] = ACTIONS(362), - [anon_sym_ATmedia] = ACTIONS(362), - [anon_sym_ATcharset] = ACTIONS(362), - [anon_sym_ATnamespace] = ACTIONS(362), - [anon_sym_ATkeyframes] = ACTIONS(362), - [aux_sym_keyframes_statement_token1] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(360), - [anon_sym_ATsupports] = ACTIONS(362), - [sym_nesting_selector] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_DOT] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_COLON_COLON] = ACTIONS(360), - [anon_sym_POUND] = ACTIONS(360), - [anon_sym_LBRACK] = ACTIONS(360), - [sym_string_value] = ACTIONS(360), - [sym_identifier] = ACTIONS(360), - [sym_at_keyword] = ACTIONS(362), - [sym_comment] = ACTIONS(3), - }, - [63] = { - [anon_sym_ATimport] = ACTIONS(358), - [anon_sym_ATmedia] = ACTIONS(358), - [anon_sym_ATcharset] = ACTIONS(358), - [anon_sym_ATnamespace] = ACTIONS(358), - [anon_sym_ATkeyframes] = ACTIONS(358), - [aux_sym_keyframes_statement_token1] = ACTIONS(358), - [anon_sym_RBRACE] = ACTIONS(356), - [anon_sym_ATsupports] = ACTIONS(358), - [sym_nesting_selector] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(358), - [anon_sym_COLON_COLON] = ACTIONS(356), - [anon_sym_POUND] = ACTIONS(356), - [anon_sym_LBRACK] = ACTIONS(356), - [sym_string_value] = ACTIONS(356), - [sym_identifier] = ACTIONS(356), - [sym_at_keyword] = ACTIONS(358), - [sym_comment] = ACTIONS(3), - }, - [64] = { - [anon_sym_ATimport] = ACTIONS(350), - [anon_sym_ATmedia] = ACTIONS(350), - [anon_sym_ATcharset] = ACTIONS(350), - [anon_sym_ATnamespace] = ACTIONS(350), - [anon_sym_ATkeyframes] = ACTIONS(350), - [aux_sym_keyframes_statement_token1] = ACTIONS(350), - [anon_sym_RBRACE] = ACTIONS(348), - [anon_sym_ATsupports] = ACTIONS(350), - [sym_nesting_selector] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(348), - [anon_sym_DOT] = ACTIONS(348), - [anon_sym_COLON] = ACTIONS(350), - [anon_sym_COLON_COLON] = ACTIONS(348), - [anon_sym_POUND] = ACTIONS(348), - [anon_sym_LBRACK] = ACTIONS(348), - [sym_string_value] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [sym_at_keyword] = ACTIONS(350), - [sym_comment] = ACTIONS(3), - }, - [65] = { - [anon_sym_ATimport] = ACTIONS(354), - [anon_sym_ATmedia] = ACTIONS(354), - [anon_sym_ATcharset] = ACTIONS(354), - [anon_sym_ATnamespace] = ACTIONS(354), - [anon_sym_ATkeyframes] = ACTIONS(354), - [aux_sym_keyframes_statement_token1] = ACTIONS(354), - [anon_sym_RBRACE] = ACTIONS(352), - [anon_sym_ATsupports] = ACTIONS(354), - [sym_nesting_selector] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_COLON] = ACTIONS(354), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(352), - [anon_sym_LBRACK] = ACTIONS(352), - [sym_string_value] = ACTIONS(352), - [sym_identifier] = ACTIONS(352), - [sym_at_keyword] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - }, - [66] = { - [anon_sym_ATimport] = ACTIONS(305), - [anon_sym_ATmedia] = ACTIONS(305), - [anon_sym_ATcharset] = ACTIONS(305), - [anon_sym_ATnamespace] = ACTIONS(305), - [anon_sym_ATkeyframes] = ACTIONS(305), - [aux_sym_keyframes_statement_token1] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_ATsupports] = ACTIONS(305), - [sym_nesting_selector] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COLON] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(303), - [sym_string_value] = ACTIONS(303), - [sym_identifier] = ACTIONS(303), - [sym_at_keyword] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - }, - [67] = { - [anon_sym_ATimport] = ACTIONS(340), - [anon_sym_ATmedia] = ACTIONS(340), - [anon_sym_ATcharset] = ACTIONS(340), - [anon_sym_ATnamespace] = ACTIONS(340), - [anon_sym_ATkeyframes] = ACTIONS(340), - [aux_sym_keyframes_statement_token1] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_ATsupports] = ACTIONS(340), - [sym_nesting_selector] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_POUND] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(338), - [sym_string_value] = ACTIONS(338), - [sym_identifier] = ACTIONS(338), - [sym_at_keyword] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - }, - [68] = { - [anon_sym_ATimport] = ACTIONS(388), - [anon_sym_ATmedia] = ACTIONS(388), - [anon_sym_ATcharset] = ACTIONS(388), - [anon_sym_ATnamespace] = ACTIONS(388), - [anon_sym_ATkeyframes] = ACTIONS(388), - [aux_sym_keyframes_statement_token1] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_ATsupports] = ACTIONS(388), - [sym_nesting_selector] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_COLON] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(386), - [sym_string_value] = ACTIONS(386), - [sym_identifier] = ACTIONS(386), - [sym_at_keyword] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - }, - [69] = { - [anon_sym_ATimport] = ACTIONS(301), - [anon_sym_ATmedia] = ACTIONS(301), - [anon_sym_ATcharset] = ACTIONS(301), - [anon_sym_ATnamespace] = ACTIONS(301), - [anon_sym_ATkeyframes] = ACTIONS(301), - [aux_sym_keyframes_statement_token1] = ACTIONS(301), - [anon_sym_RBRACE] = ACTIONS(299), - [anon_sym_ATsupports] = ACTIONS(301), - [sym_nesting_selector] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(299), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(299), - [anon_sym_POUND] = ACTIONS(299), - [anon_sym_LBRACK] = ACTIONS(299), - [sym_string_value] = ACTIONS(299), - [sym_identifier] = ACTIONS(299), - [sym_at_keyword] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - }, - [70] = { - [anon_sym_ATimport] = ACTIONS(293), - [anon_sym_ATmedia] = ACTIONS(293), - [anon_sym_ATcharset] = ACTIONS(293), - [anon_sym_ATnamespace] = ACTIONS(293), - [anon_sym_ATkeyframes] = ACTIONS(293), - [aux_sym_keyframes_statement_token1] = ACTIONS(293), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_ATsupports] = ACTIONS(293), - [sym_nesting_selector] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_COLON_COLON] = ACTIONS(291), - [anon_sym_POUND] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(291), - [sym_string_value] = ACTIONS(291), - [sym_identifier] = ACTIONS(291), - [sym_at_keyword] = ACTIONS(293), - [sym_comment] = ACTIONS(3), - }, - [71] = { - [anon_sym_ATimport] = ACTIONS(297), - [anon_sym_ATmedia] = ACTIONS(297), - [anon_sym_ATcharset] = ACTIONS(297), - [anon_sym_ATnamespace] = ACTIONS(297), - [anon_sym_ATkeyframes] = ACTIONS(297), - [aux_sym_keyframes_statement_token1] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_ATsupports] = ACTIONS(297), - [sym_nesting_selector] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(295), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_COLON_COLON] = ACTIONS(295), - [anon_sym_POUND] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(295), - [sym_string_value] = ACTIONS(295), - [sym_identifier] = ACTIONS(295), - [sym_at_keyword] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - }, - [72] = { - [anon_sym_ATimport] = ACTIONS(404), - [anon_sym_ATmedia] = ACTIONS(404), - [anon_sym_ATcharset] = ACTIONS(404), - [anon_sym_ATnamespace] = ACTIONS(404), - [anon_sym_ATkeyframes] = ACTIONS(404), - [aux_sym_keyframes_statement_token1] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_ATsupports] = ACTIONS(404), - [sym_nesting_selector] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(402), - [anon_sym_COLON] = ACTIONS(404), - [anon_sym_COLON_COLON] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [sym_string_value] = ACTIONS(402), - [sym_identifier] = ACTIONS(402), - [sym_at_keyword] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, - [73] = { - [anon_sym_ATimport] = ACTIONS(313), - [anon_sym_ATmedia] = ACTIONS(313), - [anon_sym_ATcharset] = ACTIONS(313), - [anon_sym_ATnamespace] = ACTIONS(313), - [anon_sym_ATkeyframes] = ACTIONS(313), - [aux_sym_keyframes_statement_token1] = ACTIONS(313), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_ATsupports] = ACTIONS(313), - [sym_nesting_selector] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_DOT] = ACTIONS(311), - [anon_sym_COLON] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(311), - [anon_sym_POUND] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(311), - [sym_string_value] = ACTIONS(311), - [sym_identifier] = ACTIONS(311), - [sym_at_keyword] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - }, - [74] = { - [anon_sym_ATimport] = ACTIONS(368), - [anon_sym_ATmedia] = ACTIONS(368), - [anon_sym_ATcharset] = ACTIONS(368), - [anon_sym_ATnamespace] = ACTIONS(368), - [anon_sym_ATkeyframes] = ACTIONS(368), - [aux_sym_keyframes_statement_token1] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(366), - [anon_sym_ATsupports] = ACTIONS(368), - [sym_nesting_selector] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(366), - [anon_sym_POUND] = ACTIONS(366), - [anon_sym_LBRACK] = ACTIONS(366), - [sym_string_value] = ACTIONS(366), - [sym_identifier] = ACTIONS(366), - [sym_at_keyword] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - }, - [75] = { - [anon_sym_ATimport] = ACTIONS(380), - [anon_sym_ATmedia] = ACTIONS(380), - [anon_sym_ATcharset] = ACTIONS(380), - [anon_sym_ATnamespace] = ACTIONS(380), - [anon_sym_ATkeyframes] = ACTIONS(380), - [aux_sym_keyframes_statement_token1] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(378), - [anon_sym_ATsupports] = ACTIONS(380), - [sym_nesting_selector] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_COLON] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_POUND] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), - [sym_string_value] = ACTIONS(378), - [sym_identifier] = ACTIONS(378), - [sym_at_keyword] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - }, - [76] = { - [anon_sym_ATimport] = ACTIONS(392), - [anon_sym_ATmedia] = ACTIONS(392), - [anon_sym_ATcharset] = ACTIONS(392), - [anon_sym_ATnamespace] = ACTIONS(392), - [anon_sym_ATkeyframes] = ACTIONS(392), - [aux_sym_keyframes_statement_token1] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_ATsupports] = ACTIONS(392), - [sym_nesting_selector] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_POUND] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [sym_string_value] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [sym_at_keyword] = ACTIONS(392), - [sym_comment] = ACTIONS(3), - }, - [77] = { - [anon_sym_ATimport] = ACTIONS(396), - [anon_sym_ATmedia] = ACTIONS(396), - [anon_sym_ATcharset] = ACTIONS(396), - [anon_sym_ATnamespace] = ACTIONS(396), - [anon_sym_ATkeyframes] = ACTIONS(396), - [aux_sym_keyframes_statement_token1] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_ATsupports] = ACTIONS(396), - [sym_nesting_selector] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [sym_string_value] = ACTIONS(394), - [sym_identifier] = ACTIONS(394), - [sym_at_keyword] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - }, - [78] = { - [anon_sym_ATimport] = ACTIONS(400), - [anon_sym_ATmedia] = ACTIONS(400), - [anon_sym_ATcharset] = ACTIONS(400), - [anon_sym_ATnamespace] = ACTIONS(400), - [anon_sym_ATkeyframes] = ACTIONS(400), - [aux_sym_keyframes_statement_token1] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(398), - [anon_sym_ATsupports] = ACTIONS(400), - [sym_nesting_selector] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_COLON] = ACTIONS(400), - [anon_sym_COLON_COLON] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(398), - [sym_string_value] = ACTIONS(398), - [sym_identifier] = ACTIONS(398), - [sym_at_keyword] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - }, - [79] = { - [anon_sym_COMMA] = ACTIONS(406), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(406), - [sym_important] = ACTIONS(406), - [anon_sym_LPAREN2] = ACTIONS(406), - [sym_string_value] = ACTIONS(406), - [aux_sym_integer_value_token1] = ACTIONS(408), - [aux_sym_float_value_token1] = ACTIONS(408), - [sym_unit] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(408), - [sym_identifier] = ACTIONS(408), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(408), - }, - [80] = { - [anon_sym_COMMA] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(412), - [sym_important] = ACTIONS(412), - [anon_sym_LPAREN2] = ACTIONS(412), - [sym_string_value] = ACTIONS(412), - [aux_sym_integer_value_token1] = ACTIONS(414), - [aux_sym_float_value_token1] = ACTIONS(414), - [sym_unit] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), - [sym_identifier] = ACTIONS(414), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(414), - }, - [81] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [82] = { - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(420), - [sym_important] = ACTIONS(420), - [anon_sym_LPAREN2] = ACTIONS(420), - [sym_string_value] = ACTIONS(420), - [aux_sym_integer_value_token1] = ACTIONS(422), - [aux_sym_float_value_token1] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(422), - }, - [83] = { - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_RPAREN] = ACTIONS(424), - [sym_important] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(424), - [sym_string_value] = ACTIONS(424), - [aux_sym_integer_value_token1] = ACTIONS(426), - [aux_sym_float_value_token1] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(426), - [sym_identifier] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(426), - }, - [84] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(24), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(428), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [85] = { - [sym__query] = STATE(211), - [sym_feature_query] = STATE(211), - [sym_parenthesized_query] = STATE(211), - [sym_binary_query] = STATE(211), - [sym_unary_query] = STATE(211), - [sym_selector_query] = STATE(211), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [86] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(25), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(444), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [87] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(28), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [88] = { - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_RPAREN] = ACTIONS(448), - [sym_important] = ACTIONS(448), - [anon_sym_LPAREN2] = ACTIONS(448), - [sym_string_value] = ACTIONS(448), - [aux_sym_integer_value_token1] = ACTIONS(450), - [aux_sym_float_value_token1] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(450), - [sym_identifier] = ACTIONS(450), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(450), - }, - [89] = { - [sym__query] = STATE(205), - [sym_feature_query] = STATE(205), - [sym_parenthesized_query] = STATE(205), - [sym_binary_query] = STATE(205), - [sym_unary_query] = STATE(205), - [sym_selector_query] = STATE(205), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [90] = { - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_RPAREN] = ACTIONS(454), - [sym_important] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(454), - [sym_string_value] = ACTIONS(454), - [aux_sym_integer_value_token1] = ACTIONS(456), - [aux_sym_float_value_token1] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [sym_identifier] = ACTIONS(456), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(456), - }, - [91] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(37), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [92] = { - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_POUND] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(460), - [sym_important] = ACTIONS(460), - [anon_sym_LPAREN2] = ACTIONS(460), - [sym_string_value] = ACTIONS(460), - [aux_sym_integer_value_token1] = ACTIONS(462), - [aux_sym_float_value_token1] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(462), - [sym_identifier] = ACTIONS(462), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(462), - }, - [93] = { - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(464), - [sym_important] = ACTIONS(464), - [anon_sym_LPAREN2] = ACTIONS(464), - [sym_string_value] = ACTIONS(464), - [aux_sym_integer_value_token1] = ACTIONS(466), - [aux_sym_float_value_token1] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), - [sym_identifier] = ACTIONS(466), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(466), - }, - [94] = { - [anon_sym_COMMA] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(468), - [sym_important] = ACTIONS(468), - [anon_sym_LPAREN2] = ACTIONS(468), - [sym_string_value] = ACTIONS(468), - [aux_sym_integer_value_token1] = ACTIONS(470), - [aux_sym_float_value_token1] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(470), - [sym_identifier] = ACTIONS(470), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(470), - }, - [95] = { - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(472), - [sym_important] = ACTIONS(472), - [anon_sym_LPAREN2] = ACTIONS(472), - [sym_string_value] = ACTIONS(472), - [aux_sym_integer_value_token1] = ACTIONS(474), - [aux_sym_float_value_token1] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [sym_identifier] = ACTIONS(474), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(474), - }, - [96] = { - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(476), - [sym_important] = ACTIONS(476), - [anon_sym_LPAREN2] = ACTIONS(476), - [sym_string_value] = ACTIONS(476), - [aux_sym_integer_value_token1] = ACTIONS(478), - [aux_sym_float_value_token1] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(478), - [sym_identifier] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(478), - }, - [97] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(46), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [98] = { - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(252), - [anon_sym_PLUS] = ACTIONS(193), - [sym_important] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(252), - [sym_string_value] = ACTIONS(252), - [aux_sym_integer_value_token1] = ACTIONS(480), - [aux_sym_float_value_token1] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_SLASH] = ACTIONS(193), - [sym_identifier] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(480), - }, - [99] = { - [sym__value] = STATE(110), - [sym_parenthesized_value] = STATE(110), - [sym_color_value] = STATE(110), - [sym_integer_value] = STATE(110), - [sym_float_value] = STATE(110), - [sym_call_expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [aux_sym_pseudo_class_arguments_repeat1] = STATE(91), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(245), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(179), - }, - [100] = { - [anon_sym_COMMA] = ACTIONS(482), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(193), - [sym_important] = ACTIONS(482), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_string_value] = ACTIONS(482), - [aux_sym_integer_value_token1] = ACTIONS(484), - [aux_sym_float_value_token1] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_SLASH] = ACTIONS(193), - [sym_identifier] = ACTIONS(484), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(484), - }, - [101] = { - [sym__value] = STATE(166), - [sym_parenthesized_value] = STATE(166), - [sym_color_value] = STATE(166), - [sym_integer_value] = STATE(166), - [sym_float_value] = STATE(166), - [sym_call_expression] = STATE(166), - [sym_binary_expression] = STATE(166), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LPAREN2] = ACTIONS(488), - [sym_string_value] = ACTIONS(490), - [aux_sym_integer_value_token1] = ACTIONS(492), - [aux_sym_float_value_token1] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(498), - }, - [102] = { - [sym__value] = STATE(212), - [sym_parenthesized_value] = STATE(212), - [sym_color_value] = STATE(212), - [sym_integer_value] = STATE(212), - [sym_float_value] = STATE(212), - [sym_call_expression] = STATE(212), - [sym_binary_expression] = STATE(212), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(504), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(512), - }, - [103] = { - [sym_block] = STATE(51), - [sym__query] = STATE(178), - [sym_feature_query] = STATE(178), - [sym_parenthesized_query] = STATE(178), - [sym_binary_query] = STATE(178), - [sym_unary_query] = STATE(178), - [sym_selector_query] = STATE(178), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [104] = { - [sym__value] = STATE(208), - [sym_parenthesized_value] = STATE(208), - [sym_color_value] = STATE(208), - [sym_integer_value] = STATE(208), - [sym_float_value] = STATE(208), - [sym_call_expression] = STATE(208), - [sym_binary_expression] = STATE(208), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(518), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(520), - }, - [105] = { - [sym_pseudo_class_arguments] = STATE(131), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_RPAREN] = ACTIONS(522), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(522), - }, - [106] = { - [sym__value] = STATE(207), - [sym_parenthesized_value] = STATE(207), - [sym_color_value] = STATE(207), - [sym_integer_value] = STATE(207), - [sym_float_value] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_binary_expression] = STATE(207), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(528), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(530), - }, - [107] = { - [sym__value] = STATE(15), - [sym_parenthesized_value] = STATE(15), - [sym_color_value] = STATE(15), - [sym_integer_value] = STATE(15), - [sym_float_value] = STATE(15), - [sym_call_expression] = STATE(15), - [sym_binary_expression] = STATE(15), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(532), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(534), - }, - [108] = { - [sym__value] = STATE(98), - [sym_parenthesized_value] = STATE(98), - [sym_color_value] = STATE(98), - [sym_integer_value] = STATE(98), - [sym_float_value] = STATE(98), - [sym_call_expression] = STATE(98), - [sym_binary_expression] = STATE(98), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(536), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(538), - }, - [109] = { - [sym__value] = STATE(96), - [sym_parenthesized_value] = STATE(96), - [sym_color_value] = STATE(96), - [sym_integer_value] = STATE(96), - [sym_float_value] = STATE(96), - [sym_call_expression] = STATE(96), - [sym_binary_expression] = STATE(96), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(540), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(542), - }, - [110] = { - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(193), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_LPAREN2] = ACTIONS(544), - [sym_string_value] = ACTIONS(544), - [aux_sym_integer_value_token1] = ACTIONS(546), - [aux_sym_float_value_token1] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_SLASH] = ACTIONS(193), - [sym_identifier] = ACTIONS(546), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(546), - }, - [111] = { - [sym__value] = STATE(188), - [sym_parenthesized_value] = STATE(188), - [sym_color_value] = STATE(188), - [sym_integer_value] = STATE(188), - [sym_float_value] = STATE(188), - [sym_call_expression] = STATE(188), - [sym_binary_expression] = STATE(188), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(548), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(550), - }, - [112] = { - [sym__value] = STATE(210), - [sym_parenthesized_value] = STATE(210), - [sym_color_value] = STATE(210), - [sym_integer_value] = STATE(210), - [sym_float_value] = STATE(210), - [sym_call_expression] = STATE(210), - [sym_binary_expression] = STATE(210), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(552), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(554), - }, - [113] = { - [sym_block] = STATE(30), - [sym__query] = STATE(179), - [sym_feature_query] = STATE(179), - [sym_parenthesized_query] = STATE(179), - [sym_binary_query] = STATE(179), - [sym_unary_query] = STATE(179), - [sym_selector_query] = STATE(179), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [114] = { - [sym_pseudo_class_arguments] = STATE(137), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [anon_sym_COLON] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_RPAREN] = ACTIONS(560), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(560), - }, - [115] = { - [sym__value] = STATE(89), - [sym_parenthesized_value] = STATE(89), - [sym_color_value] = STATE(89), - [sym_integer_value] = STATE(89), - [sym_float_value] = STATE(89), - [sym_call_expression] = STATE(89), - [sym_binary_expression] = STATE(89), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LPAREN2] = ACTIONS(488), - [sym_string_value] = ACTIONS(564), - [aux_sym_integer_value_token1] = ACTIONS(492), - [aux_sym_float_value_token1] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(566), - }, - [116] = { - [sym__value] = STATE(13), - [sym_parenthesized_value] = STATE(13), - [sym_color_value] = STATE(13), - [sym_integer_value] = STATE(13), - [sym_float_value] = STATE(13), - [sym_call_expression] = STATE(13), - [sym_binary_expression] = STATE(13), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(568), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(570), - }, - [117] = { - [sym__value] = STATE(201), - [sym_parenthesized_value] = STATE(201), - [sym_color_value] = STATE(201), - [sym_integer_value] = STATE(201), - [sym_float_value] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_binary_expression] = STATE(201), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(572), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(574), - }, - [118] = { - [sym__value] = STATE(204), - [sym_parenthesized_value] = STATE(204), - [sym_color_value] = STATE(204), - [sym_integer_value] = STATE(204), - [sym_float_value] = STATE(204), - [sym_call_expression] = STATE(204), - [sym_binary_expression] = STATE(204), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(576), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(578), - }, - [119] = { - [sym__value] = STATE(213), - [sym_parenthesized_value] = STATE(213), - [sym_color_value] = STATE(213), - [sym_integer_value] = STATE(213), - [sym_float_value] = STATE(213), - [sym_call_expression] = STATE(213), - [sym_binary_expression] = STATE(213), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_LPAREN2] = ACTIONS(502), - [sym_string_value] = ACTIONS(580), - [aux_sym_integer_value_token1] = ACTIONS(506), - [aux_sym_float_value_token1] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(582), - }, - [120] = { - [sym__value] = STATE(85), - [sym_parenthesized_value] = STATE(85), - [sym_color_value] = STATE(85), - [sym_integer_value] = STATE(85), - [sym_float_value] = STATE(85), - [sym_call_expression] = STATE(85), - [sym_binary_expression] = STATE(85), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LPAREN2] = ACTIONS(488), - [sym_string_value] = ACTIONS(584), - [aux_sym_integer_value_token1] = ACTIONS(492), - [aux_sym_float_value_token1] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(586), - }, - [121] = { - [sym__value] = STATE(14), - [sym_parenthesized_value] = STATE(14), - [sym_color_value] = STATE(14), - [sym_integer_value] = STATE(14), - [sym_float_value] = STATE(14), - [sym_call_expression] = STATE(14), - [sym_binary_expression] = STATE(14), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(169), - [sym_string_value] = ACTIONS(588), - [aux_sym_integer_value_token1] = ACTIONS(173), - [aux_sym_float_value_token1] = ACTIONS(175), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [sym_plain_value] = ACTIONS(590), - }, - [122] = { - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_RPAREN] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(592), - }, - [123] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(596), - [anon_sym_COLON] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(596), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(596), - }, - [124] = { - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_TILDE] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_RPAREN] = ACTIONS(600), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(600), - }, - [125] = { - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_DOT] = ACTIONS(604), - [anon_sym_COLON] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_GT] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(604), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(604), - }, - [126] = { - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(612), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(608), - }, - [127] = { - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(616), - [anon_sym_COLON_COLON] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_RPAREN] = ACTIONS(614), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(614), - }, - [128] = { - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(620), - [anon_sym_COLON_COLON] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_RPAREN] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(618), - }, - [129] = { - [anon_sym_COMMA] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(622), - [anon_sym_COLON] = ACTIONS(624), - [anon_sym_COLON_COLON] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_RPAREN] = ACTIONS(622), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(622), - }, - [130] = { - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [anon_sym_COLON] = ACTIONS(628), - [anon_sym_COLON_COLON] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(626), - }, - [131] = { - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(630), - [anon_sym_COLON] = ACTIONS(632), - [anon_sym_COLON_COLON] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(630), - [anon_sym_LBRACK] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_RPAREN] = ACTIONS(630), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(630), - }, - [132] = { - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(634), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(634), - }, - [133] = { - [anon_sym_COMMA] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_DOT] = ACTIONS(638), - [anon_sym_COLON] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(638), - [anon_sym_LBRACK] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(638), - }, - [134] = { - [sym_arguments] = STATE(164), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(217), - [anon_sym_not] = ACTIONS(217), - [anon_sym_only] = ACTIONS(217), - [anon_sym_selector] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_SLASH] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - }, - [135] = { - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(644), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_RPAREN] = ACTIONS(644), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(644), - }, - [136] = { - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(648), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_RPAREN] = ACTIONS(648), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(648), - }, - [137] = { - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(652), - }, - [138] = { - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(656), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(656), - }, - [139] = { - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(660), - [anon_sym_COLON] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_TILDE] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(660), - }, - [140] = { - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(664), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(664), - }, - [141] = { - [aux_sym_selectors_repeat1] = STATE(234), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(686), - }, - [142] = { - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(688), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym_POUND] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_TILDE] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(688), - [anon_sym_RPAREN] = ACTIONS(688), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(688), - }, - [143] = { - [aux_sym_pseudo_class_arguments_repeat2] = STATE(233), - [anon_sym_COMMA] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_RPAREN] = ACTIONS(346), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(686), - }, - [144] = { - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(209), - }, - [145] = { - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(692), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(692), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(692), - }, - [146] = { - [sym__query] = STATE(203), - [sym_feature_query] = STATE(203), - [sym_parenthesized_query] = STATE(203), - [sym_binary_query] = STATE(203), - [sym_unary_query] = STATE(203), - [sym_selector_query] = STATE(203), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [sym__query] = STATE(192), - [sym_feature_query] = STATE(192), - [sym_parenthesized_query] = STATE(192), - [sym_binary_query] = STATE(192), - [sym_unary_query] = STATE(192), - [sym_selector_query] = STATE(192), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym__query] = STATE(216), - [sym_feature_query] = STATE(216), - [sym_parenthesized_query] = STATE(216), - [sym_binary_query] = STATE(216), - [sym_unary_query] = STATE(216), - [sym_selector_query] = STATE(216), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(209), - }, - [150] = { - [sym__query] = STATE(194), - [sym_feature_query] = STATE(194), - [sym_parenthesized_query] = STATE(194), - [sym_binary_query] = STATE(194), - [sym_unary_query] = STATE(194), - [sym_selector_query] = STATE(194), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [sym__query] = STATE(230), - [sym_feature_query] = STATE(230), - [sym_parenthesized_query] = STATE(230), - [sym_binary_query] = STATE(230), - [sym_unary_query] = STATE(230), - [sym_selector_query] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(699), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [sym__query] = STATE(226), - [sym_feature_query] = STATE(226), - [sym_parenthesized_query] = STATE(226), - [sym_binary_query] = STATE(226), - [sym_unary_query] = STATE(226), - [sym_selector_query] = STATE(226), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_RPAREN] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(686), - }, - [154] = { - [sym__query] = STATE(199), - [sym_feature_query] = STATE(199), - [sym_parenthesized_query] = STATE(199), - [sym_binary_query] = STATE(199), - [sym_unary_query] = STATE(199), - [sym_selector_query] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(701), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(209), - }, - [156] = { - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_LPAREN2] = ACTIONS(420), - [anon_sym_not] = ACTIONS(422), - [anon_sym_only] = ACTIONS(422), - [anon_sym_selector] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym__query] = STATE(198), - [sym_feature_query] = STATE(198), - [sym_parenthesized_query] = STATE(198), - [sym_binary_query] = STATE(198), - [sym_unary_query] = STATE(198), - [sym_selector_query] = STATE(198), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_not] = ACTIONS(436), - [anon_sym_only] = ACTIONS(436), - [anon_sym_selector] = ACTIONS(438), - [sym_identifier] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_LPAREN2] = ACTIONS(412), - [anon_sym_not] = ACTIONS(414), - [anon_sym_only] = ACTIONS(414), - [anon_sym_selector] = ACTIONS(414), - [sym_unit] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), - [sym_identifier] = ACTIONS(414), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(705), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(209), - }, - [160] = { - [anon_sym_COMMA] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(686), - }, - [161] = { - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_LPAREN2] = ACTIONS(406), - [anon_sym_not] = ACTIONS(408), - [anon_sym_only] = ACTIONS(408), - [anon_sym_selector] = ACTIONS(408), - [sym_unit] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(408), - [sym_identifier] = ACTIONS(408), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_LPAREN2] = ACTIONS(464), - [anon_sym_not] = ACTIONS(466), - [anon_sym_only] = ACTIONS(466), - [anon_sym_selector] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), - [sym_identifier] = ACTIONS(466), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_LPAREN2] = ACTIONS(468), - [anon_sym_not] = ACTIONS(470), - [anon_sym_only] = ACTIONS(470), - [anon_sym_selector] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(470), - [sym_identifier] = ACTIONS(470), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_not] = ACTIONS(462), - [anon_sym_only] = ACTIONS(462), - [anon_sym_selector] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(462), - [sym_identifier] = ACTIONS(462), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(424), - [anon_sym_not] = ACTIONS(426), - [anon_sym_only] = ACTIONS(426), - [anon_sym_selector] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(426), - [sym_identifier] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LPAREN2] = ACTIONS(476), - [anon_sym_not] = ACTIONS(478), - [anon_sym_only] = ACTIONS(478), - [anon_sym_selector] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(478), - [sym_identifier] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(454), - [anon_sym_not] = ACTIONS(456), - [anon_sym_only] = ACTIONS(456), - [anon_sym_selector] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [sym_identifier] = ACTIONS(456), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_LPAREN2] = ACTIONS(448), - [anon_sym_not] = ACTIONS(450), - [anon_sym_only] = ACTIONS(450), - [anon_sym_selector] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(450), - [sym_identifier] = ACTIONS(450), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_RPAREN] = ACTIONS(712), - [sym_comment] = ACTIONS(3), - [sym__descendant_operator] = ACTIONS(686), - }, - [170] = { - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_LPAREN2] = ACTIONS(472), - [anon_sym_not] = ACTIONS(474), - [anon_sym_only] = ACTIONS(474), - [anon_sym_selector] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [sym_identifier] = ACTIONS(474), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_arguments] = STATE(185), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_RBRACK] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_RBRACK] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_RPAREN] = ACTIONS(406), - [sym_unit] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(408), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [sym_unit] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(414), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_RBRACK] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(470), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_RBRACK] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_TILDE_EQ] = ACTIONS(720), - [anon_sym_CARET_EQ] = ACTIONS(720), - [anon_sym_PIPE_EQ] = ACTIONS(720), - [anon_sym_STAR_EQ] = ACTIONS(720), - [anon_sym_DOLLAR_EQ] = ACTIONS(720), - [anon_sym_RBRACK] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_TILDE_EQ] = ACTIONS(724), - [anon_sym_CARET_EQ] = ACTIONS(724), - [anon_sym_PIPE_EQ] = ACTIONS(724), - [anon_sym_STAR_EQ] = ACTIONS(724), - [anon_sym_DOLLAR_EQ] = ACTIONS(724), - [anon_sym_RBRACK] = ACTIONS(726), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_block] = STATE(74), - [aux_sym_import_statement_repeat1] = STATE(202), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_block] = STATE(47), - [aux_sym_import_statement_repeat1] = STATE(200), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_keyframe_block] = STATE(190), - [sym_integer_value] = STATE(238), - [aux_sym_keyframe_block_list_repeat1] = STATE(190), - [anon_sym_RBRACE] = ACTIONS(736), - [sym_from] = ACTIONS(738), - [sym_to] = ACTIONS(738), - [aux_sym_integer_value_token1] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_RBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_RBRACK] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_RPAREN] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(450), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_RBRACK] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(422), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(456), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_RBRACK] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(462), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_keyframe_block] = STATE(191), - [sym_integer_value] = STATE(238), - [aux_sym_keyframe_block_list_repeat1] = STATE(191), - [anon_sym_RBRACE] = ACTIONS(742), - [sym_from] = ACTIONS(738), - [sym_to] = ACTIONS(738), - [aux_sym_integer_value_token1] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_keyframe_block] = STATE(180), - [sym_integer_value] = STATE(238), - [aux_sym_keyframe_block_list_repeat1] = STATE(180), - [anon_sym_RBRACE] = ACTIONS(744), - [sym_from] = ACTIONS(738), - [sym_to] = ACTIONS(738), - [aux_sym_integer_value_token1] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_RBRACK] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(466), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_keyframe_block] = STATE(190), - [sym_integer_value] = STATE(238), - [aux_sym_keyframe_block_list_repeat1] = STATE(190), - [anon_sym_RBRACE] = ACTIONS(746), - [sym_from] = ACTIONS(748), - [sym_to] = ACTIONS(748), - [aux_sym_integer_value_token1] = ACTIONS(751), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_keyframe_block] = STATE(190), - [sym_integer_value] = STATE(238), - [aux_sym_keyframe_block_list_repeat1] = STATE(190), - [anon_sym_RBRACE] = ACTIONS(754), - [sym_from] = ACTIONS(738), - [sym_to] = ACTIONS(738), - [aux_sym_integer_value_token1] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [sym_block] = STATE(72), - [aux_sym_import_statement_repeat1] = STATE(225), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_and] = ACTIONS(756), - [anon_sym_or] = ACTIONS(756), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [sym_block] = STATE(60), - [aux_sym_import_statement_repeat1] = STATE(217), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(758), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_and] = ACTIONS(758), - [anon_sym_or] = ACTIONS(758), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_SEMI] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_and] = ACTIONS(760), - [anon_sym_or] = ACTIONS(760), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_and] = ACTIONS(762), - [anon_sym_or] = ACTIONS(762), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_and] = ACTIONS(766), - [anon_sym_or] = ACTIONS(766), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_block] = STATE(43), - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_block] = STATE(65), - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(516), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [204] = { - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [aux_sym_import_statement_repeat1] = STATE(235), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [sym_call_expression] = STATE(266), - [sym_arguments] = STATE(164), - [anon_sym_LPAREN] = ACTIONS(642), - [sym_string_value] = ACTIONS(784), - [sym_identifier] = ACTIONS(786), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_RBRACK] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_call_expression] = STATE(260), - [sym_arguments] = STATE(164), - [anon_sym_LPAREN] = ACTIONS(642), - [sym_string_value] = ACTIONS(792), - [sym_identifier] = ACTIONS(786), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [aux_sym_import_statement_repeat1] = STATE(236), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [anon_sym_STAR] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [aux_sym_arguments_repeat1] = STATE(215), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_RPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [aux_sym_arguments_repeat1] = STATE(215), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_RPAREN] = ACTIONS(364), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_block] = STATE(54), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_block] = STATE(32), - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [anon_sym_RBRACE] = ACTIONS(303), - [sym_from] = ACTIONS(303), - [sym_to] = ACTIONS(303), - [aux_sym_integer_value_token1] = ACTIONS(303), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [anon_sym_RBRACE] = ACTIONS(360), - [sym_from] = ACTIONS(360), - [sym_to] = ACTIONS(360), - [aux_sym_integer_value_token1] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [anon_sym_RBRACE] = ACTIONS(378), - [sym_from] = ACTIONS(378), - [sym_to] = ACTIONS(378), - [aux_sym_integer_value_token1] = ACTIONS(378), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(778), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [anon_sym_COLON] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_and] = ACTIONS(756), - [anon_sym_or] = ACTIONS(756), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [aux_sym_arguments_repeat1] = STATE(215), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_RPAREN] = ACTIONS(812), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [anon_sym_RBRACE] = ACTIONS(814), - [sym_from] = ACTIONS(814), - [sym_to] = ACTIONS(814), - [aux_sym_integer_value_token1] = ACTIONS(814), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_block] = STATE(71), - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(516), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_block] = STATE(76), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [aux_sym_arguments_repeat1] = STATE(215), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_RPAREN] = ACTIONS(816), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_call_expression] = STATE(253), - [sym_string_value] = ACTIONS(818), - [sym_identifier] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [aux_sym_pseudo_class_arguments_repeat2] = STATE(229), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_and] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_call_expression] = STATE(252), - [sym_string_value] = ACTIONS(827), - [sym_identifier] = ACTIONS(829), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [aux_sym_selectors_repeat1] = STATE(232), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_LBRACE] = ACTIONS(708), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [aux_sym_pseudo_class_arguments_repeat2] = STATE(229), - [anon_sym_COMMA] = ACTIONS(344), - [anon_sym_RPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [aux_sym_selectors_repeat1] = STATE(232), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(836), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [aux_sym_import_statement_repeat1] = STATE(221), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - }, - [237] = { - [sym_keyframe_block_list] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - }, - [238] = { - [sym_block] = STATE(224), - [anon_sym_LBRACE] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [aux_sym_color_value_token1] = ACTIONS(846), - [sym_identifier] = ACTIONS(848), - [sym_comment] = ACTIONS(3), - }, - [240] = { - [anon_sym_LBRACE] = ACTIONS(406), - [sym_unit] = ACTIONS(850), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [sym_block] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_RBRACE] = ACTIONS(277), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [sym_block] = STATE(52), - [anon_sym_LBRACE] = ACTIONS(516), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(854), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_arguments] = STATE(164), - [anon_sym_LPAREN] = ACTIONS(642), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [sym_keyframe_block_list] = STATE(55), - [anon_sym_LBRACE] = ACTIONS(856), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [aux_sym_color_value_token1] = ACTIONS(858), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [anon_sym_RBRACE] = ACTIONS(47), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(862), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(864), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [anon_sym_SEMI] = ACTIONS(866), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [anon_sym_SEMI] = ACTIONS(868), - [sym_comment] = ACTIONS(3), - }, - [254] = { - [anon_sym_SEMI] = ACTIONS(275), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [sym_identifier] = ACTIONS(870), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [anon_sym_RBRACE] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - }, - [257] = { - [anon_sym_SEMI] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - }, - [258] = { - [sym_identifier] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - }, - [259] = { - [sym_identifier] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [anon_sym_SEMI] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - }, - [261] = { - [sym_identifier] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - }, - [262] = { - [anon_sym_RBRACE] = ACTIONS(59), - [sym_comment] = ACTIONS(3), - }, - [263] = { - [aux_sym_color_value_token1] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [anon_sym_RBRACE] = ACTIONS(886), - [sym_comment] = ACTIONS(3), - }, - [266] = { - [anon_sym_SEMI] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [anon_sym_RBRACE] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [268] = { - [sym_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - }, - [269] = { - [sym_identifier] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [anon_sym_SEMI] = ACTIONS(894), - [sym_comment] = ACTIONS(3), - }, - [271] = { - [sym_identifier] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [aux_sym_color_value_token1] = ACTIONS(900), - [sym_comment] = ACTIONS(3), - }, - [274] = { - [anon_sym_RBRACE] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [anon_sym_SEMI] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(904), - [sym_comment] = ACTIONS(3), - }, - [277] = { - [anon_sym_LPAREN2] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(37), 1, + anon_sym_ATimport, + ACTIONS(39), 1, + anon_sym_ATmedia, + ACTIONS(41), 1, + anon_sym_ATcharset, + ACTIONS(43), 1, + anon_sym_ATnamespace, + ACTIONS(47), 1, + anon_sym_RBRACE, + ACTIONS(49), 1, + anon_sym_ATsupports, + ACTIONS(51), 1, + sym_identifier, + ACTIONS(53), 1, + sym_at_keyword, + STATE(243), 1, + sym_selectors, + STATE(265), 1, + sym_last_declaration, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + ACTIONS(45), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + STATE(8), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [85] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(37), 1, + anon_sym_ATimport, + ACTIONS(39), 1, + anon_sym_ATmedia, + ACTIONS(41), 1, + anon_sym_ATcharset, + ACTIONS(43), 1, + anon_sym_ATnamespace, + ACTIONS(49), 1, + anon_sym_ATsupports, + ACTIONS(51), 1, + sym_identifier, + ACTIONS(53), 1, + sym_at_keyword, + ACTIONS(55), 1, + anon_sym_RBRACE, + STATE(243), 1, + sym_selectors, + STATE(248), 1, + sym_last_declaration, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + ACTIONS(45), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + STATE(2), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [170] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(37), 1, + anon_sym_ATimport, + ACTIONS(39), 1, + anon_sym_ATmedia, + ACTIONS(41), 1, + anon_sym_ATcharset, + ACTIONS(43), 1, + anon_sym_ATnamespace, + ACTIONS(49), 1, + anon_sym_ATsupports, + ACTIONS(51), 1, + sym_identifier, + ACTIONS(53), 1, + sym_at_keyword, + ACTIONS(57), 1, + anon_sym_RBRACE, + STATE(243), 1, + sym_selectors, + STATE(274), 1, + sym_last_declaration, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + ACTIONS(45), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + STATE(8), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [255] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(37), 1, + anon_sym_ATimport, + ACTIONS(39), 1, + anon_sym_ATmedia, + ACTIONS(41), 1, + anon_sym_ATcharset, + ACTIONS(43), 1, + anon_sym_ATnamespace, + ACTIONS(49), 1, + anon_sym_ATsupports, + ACTIONS(51), 1, + sym_identifier, + ACTIONS(53), 1, + sym_at_keyword, + ACTIONS(59), 1, + anon_sym_RBRACE, + STATE(243), 1, + sym_selectors, + STATE(256), 1, + sym_last_declaration, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + ACTIONS(45), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + STATE(8), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [340] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(37), 1, + anon_sym_ATimport, + ACTIONS(39), 1, + anon_sym_ATmedia, + ACTIONS(41), 1, + anon_sym_ATcharset, + ACTIONS(43), 1, + anon_sym_ATnamespace, + ACTIONS(49), 1, + anon_sym_ATsupports, + ACTIONS(51), 1, + sym_identifier, + ACTIONS(53), 1, + sym_at_keyword, + ACTIONS(61), 1, + anon_sym_RBRACE, + STATE(243), 1, + sym_selectors, + STATE(267), 1, + sym_last_declaration, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + ACTIONS(45), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + STATE(4), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [425] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(37), 1, + anon_sym_ATimport, + ACTIONS(39), 1, + anon_sym_ATmedia, + ACTIONS(41), 1, + anon_sym_ATcharset, + ACTIONS(43), 1, + anon_sym_ATnamespace, + ACTIONS(49), 1, + anon_sym_ATsupports, + ACTIONS(51), 1, + sym_identifier, + ACTIONS(53), 1, + sym_at_keyword, + ACTIONS(63), 1, + anon_sym_RBRACE, + STATE(243), 1, + sym_selectors, + STATE(262), 1, + sym_last_declaration, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + ACTIONS(45), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + STATE(5), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [510] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_ATimport, + ACTIONS(68), 1, + anon_sym_ATmedia, + ACTIONS(71), 1, + anon_sym_ATcharset, + ACTIONS(74), 1, + anon_sym_ATnamespace, + ACTIONS(80), 1, + anon_sym_RBRACE, + ACTIONS(82), 1, + anon_sym_ATsupports, + ACTIONS(88), 1, + anon_sym_STAR, + ACTIONS(91), 1, + anon_sym_DOT, + ACTIONS(94), 1, + anon_sym_COLON, + ACTIONS(97), 1, + anon_sym_COLON_COLON, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(103), 1, + anon_sym_LBRACK, + ACTIONS(106), 1, + sym_identifier, + ACTIONS(109), 1, + sym_at_keyword, + STATE(243), 1, + sym_selectors, + ACTIONS(77), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + ACTIONS(85), 2, + sym_nesting_selector, + sym_string_value, + STATE(8), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_block_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [592] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + anon_sym_ATimport, + ACTIONS(9), 1, + anon_sym_ATmedia, + ACTIONS(11), 1, + anon_sym_ATcharset, + ACTIONS(13), 1, + anon_sym_ATnamespace, + ACTIONS(17), 1, + anon_sym_ATsupports, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + sym_identifier, + ACTIONS(35), 1, + sym_at_keyword, + ACTIONS(112), 1, + ts_builtin_sym_end, + STATE(241), 1, + sym_selectors, + ACTIONS(15), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + ACTIONS(19), 2, + sym_nesting_selector, + sym_string_value, + STATE(10), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_stylesheet_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [674] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(114), 1, + ts_builtin_sym_end, + ACTIONS(116), 1, + anon_sym_ATimport, + ACTIONS(119), 1, + anon_sym_ATmedia, + ACTIONS(122), 1, + anon_sym_ATcharset, + ACTIONS(125), 1, + anon_sym_ATnamespace, + ACTIONS(131), 1, + anon_sym_ATsupports, + ACTIONS(137), 1, + anon_sym_STAR, + ACTIONS(140), 1, + anon_sym_DOT, + ACTIONS(143), 1, + anon_sym_COLON, + ACTIONS(146), 1, + anon_sym_COLON_COLON, + ACTIONS(149), 1, + anon_sym_POUND, + ACTIONS(152), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(158), 1, + sym_at_keyword, + STATE(241), 1, + sym_selectors, + ACTIONS(128), 2, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + ACTIONS(134), 2, + sym_nesting_selector, + sym_string_value, + STATE(10), 10, + sym_import_statement, + sym_media_statement, + sym_charset_statement, + sym_namespace_statement, + sym_keyframes_statement, + sym_supports_statement, + sym_at_rule, + sym_rule_set, + sym_declaration, + aux_sym_stylesheet_repeat1, + STATE(141), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [756] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + sym_nesting_selector, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(165), 1, + anon_sym_POUND, + ACTIONS(167), 1, + anon_sym_RPAREN, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(171), 1, + sym_string_value, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(177), 1, + sym_identifier, + ACTIONS(179), 1, + sym_plain_value, + STATE(41), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + STATE(143), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [827] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(165), 1, + anon_sym_POUND, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(171), 1, + sym_string_value, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(177), 1, + sym_identifier, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(181), 1, + sym_nesting_selector, + STATE(81), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + STATE(153), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [895] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(183), 1, + anon_sym_COMMA, + ACTIONS(185), 1, + anon_sym_SEMI, + ACTIONS(187), 1, + anon_sym_RBRACE, + ACTIONS(189), 1, + anon_sym_STAR, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(195), 1, + sym_important, + ACTIONS(197), 1, + sym_string_value, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(201), 1, + sym_plain_value, + STATE(27), 1, + aux_sym_declaration_repeat1, + ACTIONS(193), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [952] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(183), 1, + anon_sym_COMMA, + ACTIONS(185), 1, + anon_sym_SEMI, + ACTIONS(189), 1, + anon_sym_STAR, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(197), 1, + sym_string_value, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(201), 1, + sym_plain_value, + ACTIONS(203), 1, + sym_important, + STATE(40), 1, + aux_sym_declaration_repeat1, + ACTIONS(193), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1006] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(183), 1, + anon_sym_COMMA, + ACTIONS(189), 1, + anon_sym_STAR, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(197), 1, + sym_string_value, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(201), 1, + sym_plain_value, + ACTIONS(205), 1, + anon_sym_SEMI, + ACTIONS(207), 1, + sym_important, + STATE(35), 1, + aux_sym_declaration_repeat1, + ACTIONS(193), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1060] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym_arguments, + ACTIONS(211), 2, + anon_sym_STAR, + sym_string_value, + ACTIONS(213), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PLUS, + ACTIONS(217), 7, + anon_sym_LPAREN2, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(209), 8, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_RPAREN, + [1098] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(219), 2, + sym_nesting_selector, + sym_string_value, + STATE(140), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [1140] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(223), 2, + sym_nesting_selector, + sym_string_value, + STATE(160), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [1182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 3, + anon_sym_STAR, + anon_sym_LPAREN2, + sym_string_value, + ACTIONS(229), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PLUS, + ACTIONS(231), 6, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(225), 8, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_RPAREN, + [1214] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(233), 2, + sym_nesting_selector, + sym_string_value, + STATE(169), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [1256] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(235), 2, + sym_nesting_selector, + sym_string_value, + STATE(126), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [1298] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(237), 2, + sym_nesting_selector, + sym_string_value, + STATE(127), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [1340] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_COLON, + ACTIONS(27), 1, + anon_sym_COLON_COLON, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(239), 2, + sym_nesting_selector, + sym_string_value, + STATE(128), 11, + sym__selector, + sym_universal_selector, + sym_class_selector, + sym_pseudo_class_selector, + sym_pseudo_element_selector, + sym_id_selector, + sym_attribute_selector, + sym_child_selector, + sym_descendant_selector, + sym_sibling_selector, + sym_adjacent_sibling_selector, + [1382] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(243), 1, + anon_sym_RPAREN, + ACTIONS(245), 1, + sym_string_value, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(227), 1, + aux_sym_arguments_repeat1, + ACTIONS(241), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1429] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(247), 1, + anon_sym_RPAREN, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(214), 1, + aux_sym_arguments_repeat1, + ACTIONS(241), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1476] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(249), 1, + anon_sym_COMMA, + ACTIONS(254), 1, + anon_sym_POUND, + ACTIONS(257), 1, + anon_sym_LPAREN2, + ACTIONS(260), 1, + sym_string_value, + ACTIONS(263), 1, + aux_sym_integer_value_token1, + ACTIONS(266), 1, + aux_sym_float_value_token1, + ACTIONS(269), 1, + sym_identifier, + ACTIONS(272), 1, + sym_plain_value, + STATE(26), 1, + aux_sym_declaration_repeat1, + ACTIONS(252), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + sym_important, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1521] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(183), 1, + anon_sym_COMMA, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(197), 1, + sym_string_value, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(201), 1, + sym_plain_value, + ACTIONS(275), 1, + anon_sym_SEMI, + ACTIONS(277), 1, + anon_sym_RBRACE, + ACTIONS(279), 1, + sym_important, + STATE(26), 1, + aux_sym_declaration_repeat1, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1570] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(281), 1, + anon_sym_RPAREN, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(223), 1, + aux_sym_arguments_repeat1, + ACTIONS(241), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(283), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + ACTIONS(285), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + [1643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(289), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(293), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(297), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(301), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(305), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1773] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(183), 1, + anon_sym_COMMA, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(197), 1, + sym_string_value, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(201), 1, + sym_plain_value, + ACTIONS(307), 1, + anon_sym_SEMI, + ACTIONS(309), 1, + sym_important, + STATE(26), 1, + aux_sym_declaration_repeat1, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(311), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(313), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1845] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + anon_sym_POUND, + ACTIONS(320), 1, + anon_sym_LPAREN2, + ACTIONS(323), 1, + sym_string_value, + ACTIONS(326), 1, + aux_sym_integer_value_token1, + ACTIONS(329), 1, + aux_sym_float_value_token1, + ACTIONS(332), 1, + sym_identifier, + ACTIONS(335), 1, + sym_plain_value, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + ACTIONS(315), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(338), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(340), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [1913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(283), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + ACTIONS(285), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + [1939] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(183), 1, + anon_sym_COMMA, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(197), 1, + sym_string_value, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(201), 1, + sym_plain_value, + ACTIONS(275), 1, + anon_sym_SEMI, + ACTIONS(342), 1, + sym_important, + STATE(26), 1, + aux_sym_declaration_repeat1, + STATE(100), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [1985] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(344), 1, + anon_sym_COMMA, + ACTIONS(346), 1, + anon_sym_RPAREN, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(233), 1, + aux_sym_pseudo_class_arguments_repeat2, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [2031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(348), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(350), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(354), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(356), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(358), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(362), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2135] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + ACTIONS(364), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [2177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(366), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(368), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(372), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(374), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(376), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(378), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(380), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(289), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(382), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + ACTIONS(384), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + [2333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(386), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(388), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(390), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(392), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(394), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(396), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(400), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2437] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym_arguments, + ACTIONS(211), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + sym_string_value, + ACTIONS(217), 8, + anon_sym_PLUS, + anon_sym_LPAREN2, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + [2467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(382), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + ACTIONS(384), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + [2493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(372), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 9, + ts_builtin_sym_end, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(404), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(374), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(376), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(362), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(356), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(358), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(348), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(350), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(354), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(305), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(338), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(340), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(386), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(388), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(301), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(293), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(297), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(404), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(311), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(313), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(366), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(368), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(378), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(380), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(390), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(392), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(394), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(396), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [2987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 9, + anon_sym_RBRACE, + sym_nesting_selector, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + sym_string_value, + sym_identifier, + ACTIONS(400), 9, + anon_sym_ATimport, + anon_sym_ATmedia, + anon_sym_ATcharset, + anon_sym_ATnamespace, + anon_sym_ATkeyframes, + aux_sym_keyframes_statement_token1, + anon_sym_ATsupports, + anon_sym_COLON, + sym_at_keyword, + [3013] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(410), 1, + sym_unit, + ACTIONS(408), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(406), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(416), 1, + sym_unit, + ACTIONS(414), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(412), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3067] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + ACTIONS(418), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(422), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(420), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(426), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(424), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3156] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(428), 1, + anon_sym_RPAREN, + STATE(24), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3196] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(430), 1, + anon_sym_SEMI, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(432), 2, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + ACTIONS(440), 2, + anon_sym_DASH, + anon_sym_SLASH, + STATE(211), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [3232] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(444), 1, + anon_sym_RPAREN, + STATE(25), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3272] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(446), 1, + anon_sym_RPAREN, + STATE(28), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(450), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(448), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3336] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(452), 1, + anon_sym_SEMI, + ACTIONS(432), 2, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + ACTIONS(440), 2, + anon_sym_DASH, + anon_sym_SLASH, + STATE(205), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [3372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(456), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(454), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3396] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + ACTIONS(458), 1, + anon_sym_RPAREN, + STATE(37), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(462), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(460), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(464), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(468), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(474), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(472), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(478), 7, + anon_sym_PLUS, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + sym_plain_value, + ACTIONS(476), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_RPAREN, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3556] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + STATE(46), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(189), 1, + anon_sym_STAR, + ACTIONS(193), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(480), 4, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + sym_identifier, + sym_plain_value, + ACTIONS(252), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_POUND, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3620] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(179), 1, + sym_plain_value, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(245), 1, + sym_string_value, + STATE(91), 1, + aux_sym_pseudo_class_arguments_repeat1, + STATE(110), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(189), 1, + anon_sym_STAR, + ACTIONS(193), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(484), 4, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + sym_identifier, + sym_plain_value, + ACTIONS(482), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_POUND, + sym_important, + anon_sym_LPAREN2, + sym_string_value, + [3684] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(486), 1, + anon_sym_POUND, + ACTIONS(488), 1, + anon_sym_LPAREN2, + ACTIONS(490), 1, + sym_string_value, + ACTIONS(492), 1, + aux_sym_integer_value_token1, + ACTIONS(494), 1, + aux_sym_float_value_token1, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(498), 1, + sym_plain_value, + STATE(166), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3718] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(504), 1, + sym_string_value, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(512), 1, + sym_plain_value, + STATE(212), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3752] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(514), 1, + anon_sym_SEMI, + ACTIONS(516), 1, + anon_sym_LBRACE, + STATE(51), 1, + sym_block, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(178), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [3786] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(518), 1, + sym_string_value, + ACTIONS(520), 1, + sym_plain_value, + STATE(208), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_LPAREN, + STATE(131), 1, + sym_pseudo_class_arguments, + ACTIONS(522), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [3846] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(528), 1, + sym_string_value, + ACTIONS(530), 1, + sym_plain_value, + STATE(207), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3880] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(532), 1, + sym_string_value, + ACTIONS(534), 1, + sym_plain_value, + STATE(15), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3914] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(536), 1, + sym_string_value, + ACTIONS(538), 1, + sym_plain_value, + STATE(98), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3948] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(540), 1, + sym_string_value, + ACTIONS(542), 1, + sym_plain_value, + STATE(96), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [3982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(189), 1, + anon_sym_STAR, + ACTIONS(193), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(546), 4, + aux_sym_integer_value_token1, + aux_sym_float_value_token1, + sym_identifier, + sym_plain_value, + ACTIONS(544), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_string_value, + [4008] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(548), 1, + sym_string_value, + ACTIONS(550), 1, + sym_plain_value, + STATE(188), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4042] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(552), 1, + sym_string_value, + ACTIONS(554), 1, + sym_plain_value, + STATE(210), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4076] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(556), 1, + anon_sym_SEMI, + ACTIONS(558), 1, + anon_sym_LBRACE, + STATE(30), 1, + sym_block, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(179), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [4110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(562), 1, + anon_sym_COLON, + STATE(137), 1, + sym_pseudo_class_arguments, + ACTIONS(560), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4136] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(486), 1, + anon_sym_POUND, + ACTIONS(488), 1, + anon_sym_LPAREN2, + ACTIONS(492), 1, + aux_sym_integer_value_token1, + ACTIONS(494), 1, + aux_sym_float_value_token1, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(564), 1, + sym_string_value, + ACTIONS(566), 1, + sym_plain_value, + STATE(89), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4170] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(568), 1, + sym_string_value, + ACTIONS(570), 1, + sym_plain_value, + STATE(13), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4204] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(572), 1, + sym_string_value, + ACTIONS(574), 1, + sym_plain_value, + STATE(201), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4238] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(576), 1, + sym_string_value, + ACTIONS(578), 1, + sym_plain_value, + STATE(204), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4272] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LPAREN2, + ACTIONS(506), 1, + aux_sym_integer_value_token1, + ACTIONS(508), 1, + aux_sym_float_value_token1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(580), 1, + sym_string_value, + ACTIONS(582), 1, + sym_plain_value, + STATE(213), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4306] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(486), 1, + anon_sym_POUND, + ACTIONS(488), 1, + anon_sym_LPAREN2, + ACTIONS(492), 1, + aux_sym_integer_value_token1, + ACTIONS(494), 1, + aux_sym_float_value_token1, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(584), 1, + sym_string_value, + ACTIONS(586), 1, + sym_plain_value, + STATE(85), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4340] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LPAREN2, + ACTIONS(173), 1, + aux_sym_integer_value_token1, + ACTIONS(175), 1, + aux_sym_float_value_token1, + ACTIONS(191), 1, + anon_sym_POUND, + ACTIONS(199), 1, + sym_identifier, + ACTIONS(588), 1, + sym_string_value, + ACTIONS(590), 1, + sym_plain_value, + STATE(14), 7, + sym__value, + sym_parenthesized_value, + sym_color_value, + sym_integer_value, + sym_float_value, + sym_call_expression, + sym_binary_expression, + [4374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_COLON, + ACTIONS(592), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(598), 1, + anon_sym_COLON, + ACTIONS(596), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(602), 1, + anon_sym_COLON, + ACTIONS(600), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(604), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(612), 1, + anon_sym_COLON, + ACTIONS(608), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(616), 1, + anon_sym_COLON, + ACTIONS(614), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(620), 1, + anon_sym_COLON, + ACTIONS(618), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_COLON, + ACTIONS(622), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(628), 1, + anon_sym_COLON, + ACTIONS(626), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(632), 1, + anon_sym_COLON, + ACTIONS(630), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + anon_sym_COLON, + ACTIONS(634), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(640), 1, + anon_sym_COLON, + ACTIONS(638), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(642), 1, + anon_sym_LPAREN, + STATE(164), 1, + sym_arguments, + ACTIONS(211), 3, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(217), 7, + anon_sym_LPAREN2, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [4644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + anon_sym_COLON, + ACTIONS(644), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(650), 1, + anon_sym_COLON, + ACTIONS(648), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(654), 1, + anon_sym_COLON, + ACTIONS(652), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_COLON, + ACTIONS(656), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(662), 1, + anon_sym_COLON, + ACTIONS(660), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(666), 1, + anon_sym_COLON, + ACTIONS(664), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4766] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(668), 1, + anon_sym_COMMA, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_COLON, + ACTIONS(674), 1, + anon_sym_COLON_COLON, + ACTIONS(676), 1, + anon_sym_POUND, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_GT, + ACTIONS(682), 1, + anon_sym_TILDE, + ACTIONS(684), 1, + anon_sym_PLUS, + ACTIONS(686), 1, + sym__descendant_operator, + STATE(234), 1, + aux_sym_selectors_repeat1, + [4806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(690), 1, + anon_sym_COLON, + ACTIONS(688), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4826] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + anon_sym_COMMA, + ACTIONS(346), 1, + anon_sym_RPAREN, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(672), 1, + anon_sym_COLON, + ACTIONS(674), 1, + anon_sym_COLON_COLON, + ACTIONS(676), 1, + anon_sym_POUND, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_GT, + ACTIONS(682), 1, + anon_sym_TILDE, + ACTIONS(684), 1, + anon_sym_PLUS, + ACTIONS(686), 1, + sym__descendant_operator, + STATE(233), 1, + aux_sym_pseudo_class_arguments_repeat2, + [4866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_COLON, + ACTIONS(209), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(694), 1, + anon_sym_COLON, + ACTIONS(692), 11, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_RPAREN, + [4906] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(203), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [4931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(192), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [4956] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(216), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [4981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 1, + anon_sym_COLON, + ACTIONS(209), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + [5000] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(194), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [5025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(699), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(230), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [5050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(226), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [5075] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(672), 1, + anon_sym_COLON, + ACTIONS(674), 1, + anon_sym_COLON_COLON, + ACTIONS(676), 1, + anon_sym_POUND, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_GT, + ACTIONS(682), 1, + anon_sym_TILDE, + ACTIONS(684), 1, + anon_sym_PLUS, + ACTIONS(686), 1, + sym__descendant_operator, + ACTIONS(418), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [5110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(199), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [5135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(209), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + [5154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(420), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(422), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + anon_sym_LPAREN2, + ACTIONS(438), 1, + anon_sym_selector, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(436), 2, + anon_sym_not, + anon_sym_only, + STATE(198), 6, + sym__query, + sym_feature_query, + sym_parenthesized_query, + sym_binary_query, + sym_unary_query, + sym_selector_query, + [5198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(703), 1, + sym_unit, + ACTIONS(412), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(414), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(705), 1, + anon_sym_COLON, + ACTIONS(209), 10, + sym__descendant_operator, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_TILDE, + anon_sym_PLUS, + [5238] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(672), 1, + anon_sym_COLON, + ACTIONS(674), 1, + anon_sym_COLON_COLON, + ACTIONS(676), 1, + anon_sym_POUND, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_GT, + ACTIONS(682), 1, + anon_sym_TILDE, + ACTIONS(684), 1, + anon_sym_PLUS, + ACTIONS(686), 1, + sym__descendant_operator, + ACTIONS(708), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [5273] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(710), 1, + sym_unit, + ACTIONS(406), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(408), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(464), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(466), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(468), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(470), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(462), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(424), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(426), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(476), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(478), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(454), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(456), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(448), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(450), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5420] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(672), 1, + anon_sym_COLON, + ACTIONS(674), 1, + anon_sym_COLON_COLON, + ACTIONS(676), 1, + anon_sym_POUND, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_GT, + ACTIONS(682), 1, + anon_sym_TILDE, + ACTIONS(684), 1, + anon_sym_PLUS, + ACTIONS(686), 1, + sym__descendant_operator, + ACTIONS(712), 1, + anon_sym_RPAREN, + [5454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 4, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LPAREN2, + ACTIONS(474), 6, + anon_sym_not, + anon_sym_only, + anon_sym_selector, + anon_sym_DASH, + anon_sym_SLASH, + sym_identifier, + [5472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_SLASH, + ACTIONS(714), 1, + anon_sym_LPAREN, + STATE(185), 1, + sym_arguments, + ACTIONS(211), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(408), 1, + anon_sym_SLASH, + ACTIONS(716), 1, + sym_unit, + ACTIONS(406), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5511] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_SLASH, + ACTIONS(718), 1, + sym_unit, + ACTIONS(412), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_SLASH, + ACTIONS(468), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(474), 1, + anon_sym_SLASH, + ACTIONS(472), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(722), 1, + anon_sym_RBRACK, + ACTIONS(720), 6, + anon_sym_EQ, + anon_sym_TILDE_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_EQ, + anon_sym_DOLLAR_EQ, + [5574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(726), 1, + anon_sym_RBRACK, + ACTIONS(724), 6, + anon_sym_EQ, + anon_sym_TILDE_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_EQ, + anon_sym_DOLLAR_EQ, + [5589] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(730), 1, + anon_sym_SEMI, + STATE(74), 1, + sym_block, + STATE(202), 1, + aux_sym_import_statement_repeat1, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [5612] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(558), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_SEMI, + STATE(47), 1, + sym_block, + STATE(200), 1, + aux_sym_import_statement_repeat1, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [5635] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(736), 1, + anon_sym_RBRACE, + ACTIONS(740), 1, + aux_sym_integer_value_token1, + STATE(238), 1, + sym_integer_value, + ACTIONS(738), 2, + sym_from, + sym_to, + STATE(190), 2, + sym_keyframe_block, + aux_sym_keyframe_block_list_repeat1, + [5656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(426), 1, + anon_sym_SLASH, + ACTIONS(424), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(448), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(422), 1, + anon_sym_SLASH, + ACTIONS(420), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(456), 1, + anon_sym_SLASH, + ACTIONS(454), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(462), 1, + anon_sym_SLASH, + ACTIONS(460), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5731] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + aux_sym_integer_value_token1, + ACTIONS(742), 1, + anon_sym_RBRACE, + STATE(238), 1, + sym_integer_value, + ACTIONS(738), 2, + sym_from, + sym_to, + STATE(191), 2, + sym_keyframe_block, + aux_sym_keyframe_block_list_repeat1, + [5752] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + aux_sym_integer_value_token1, + ACTIONS(744), 1, + anon_sym_RBRACE, + STATE(238), 1, + sym_integer_value, + ACTIONS(738), 2, + sym_from, + sym_to, + STATE(180), 2, + sym_keyframe_block, + aux_sym_keyframe_block_list_repeat1, + [5773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(478), 1, + anon_sym_SLASH, + ACTIONS(476), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + anon_sym_SLASH, + ACTIONS(464), 6, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_DASH, + [5803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(746), 1, + anon_sym_RBRACE, + ACTIONS(751), 1, + aux_sym_integer_value_token1, + STATE(238), 1, + sym_integer_value, + ACTIONS(748), 2, + sym_from, + sym_to, + STATE(190), 2, + sym_keyframe_block, + aux_sym_keyframe_block_list_repeat1, + [5824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 1, + aux_sym_integer_value_token1, + ACTIONS(754), 1, + anon_sym_RBRACE, + STATE(238), 1, + sym_integer_value, + ACTIONS(738), 2, + sym_from, + sym_to, + STATE(190), 2, + sym_keyframe_block, + aux_sym_keyframe_block_list_repeat1, + [5845] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + STATE(72), 1, + sym_block, + STATE(225), 1, + aux_sym_import_statement_repeat1, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [5865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(756), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [5877] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(558), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + STATE(60), 1, + sym_block, + STATE(217), 1, + aux_sym_import_statement_repeat1, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [5897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [5909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(760), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [5921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(762), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [5933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(764), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [5945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(766), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [5957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(558), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(768), 1, + anon_sym_SEMI, + STATE(43), 1, + sym_block, + STATE(221), 1, + aux_sym_import_statement_repeat1, + [5976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [5991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(776), 1, + anon_sym_SEMI, + STATE(65), 1, + sym_block, + STATE(221), 1, + aux_sym_import_statement_repeat1, + [6010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(778), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + [6023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(780), 1, + anon_sym_SEMI, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [6038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(782), 1, + anon_sym_SEMI, + STATE(235), 1, + aux_sym_import_statement_repeat1, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [6055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(642), 1, + anon_sym_LPAREN, + ACTIONS(784), 1, + sym_string_value, + ACTIONS(786), 1, + sym_identifier, + STATE(164), 1, + sym_arguments, + STATE(266), 1, + sym_call_expression, + [6074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(788), 1, + anon_sym_RBRACK, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [6089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(790), 1, + anon_sym_RBRACK, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [6104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(642), 1, + anon_sym_LPAREN, + ACTIONS(786), 1, + sym_identifier, + ACTIONS(792), 1, + sym_string_value, + STATE(164), 1, + sym_arguments, + STATE(260), 1, + sym_call_expression, + [6123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(794), 1, + anon_sym_SEMI, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [6138] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(796), 1, + anon_sym_SEMI, + STATE(236), 1, + aux_sym_import_statement_repeat1, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [6155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [6170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 1, + anon_sym_SLASH, + ACTIONS(800), 1, + anon_sym_RPAREN, + ACTIONS(770), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + [6185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(802), 1, + anon_sym_RPAREN, + STATE(215), 1, + aux_sym_arguments_repeat1, + ACTIONS(241), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [6199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 1, + anon_sym_RPAREN, + STATE(215), 1, + aux_sym_arguments_repeat1, + ACTIONS(804), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [6213] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(558), 1, + anon_sym_LBRACE, + STATE(54), 1, + sym_block, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [6227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(558), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + STATE(32), 1, + sym_block, + STATE(221), 1, + aux_sym_import_statement_repeat1, + [6243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 4, + anon_sym_RBRACE, + sym_from, + sym_to, + aux_sym_integer_value_token1, + [6253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 4, + anon_sym_RBRACE, + sym_from, + sym_to, + aux_sym_integer_value_token1, + [6263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(378), 4, + anon_sym_RBRACE, + sym_from, + sym_to, + aux_sym_integer_value_token1, + [6273] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(807), 1, + anon_sym_COMMA, + STATE(221), 1, + aux_sym_import_statement_repeat1, + ACTIONS(778), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [6287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(756), 3, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [6299] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(812), 1, + anon_sym_RPAREN, + STATE(215), 1, + aux_sym_arguments_repeat1, + ACTIONS(241), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [6313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(814), 4, + anon_sym_RBRACE, + sym_from, + sym_to, + aux_sym_integer_value_token1, + [6323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + STATE(71), 1, + sym_block, + STATE(221), 1, + aux_sym_import_statement_repeat1, + [6339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + STATE(76), 1, + sym_block, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [6353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(816), 1, + anon_sym_RPAREN, + STATE(215), 1, + aux_sym_arguments_repeat1, + ACTIONS(241), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [6367] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + sym_string_value, + ACTIONS(820), 1, + sym_identifier, + STATE(253), 1, + sym_call_expression, + [6380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(418), 1, + anon_sym_RPAREN, + ACTIONS(822), 1, + anon_sym_COMMA, + STATE(229), 1, + aux_sym_pseudo_class_arguments_repeat2, + [6393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 1, + anon_sym_RPAREN, + ACTIONS(732), 2, + anon_sym_and, + anon_sym_or, + [6404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 1, + sym_string_value, + ACTIONS(829), 1, + sym_identifier, + STATE(252), 1, + sym_call_expression, + [6417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(831), 1, + anon_sym_COMMA, + STATE(232), 1, + aux_sym_selectors_repeat1, + [6430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + anon_sym_COMMA, + ACTIONS(834), 1, + anon_sym_RPAREN, + STATE(229), 1, + aux_sym_pseudo_class_arguments_repeat2, + [6443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(668), 1, + anon_sym_COMMA, + ACTIONS(836), 1, + anon_sym_LBRACE, + STATE(232), 1, + aux_sym_selectors_repeat1, + [6456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(838), 1, + anon_sym_SEMI, + STATE(221), 1, + aux_sym_import_statement_repeat1, + [6469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(840), 1, + anon_sym_SEMI, + STATE(221), 1, + aux_sym_import_statement_repeat1, + [6482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(842), 1, + anon_sym_LBRACE, + STATE(77), 1, + sym_keyframe_block_list, + [6492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(844), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_block, + [6502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(846), 1, + aux_sym_color_value_token1, + ACTIONS(848), 1, + sym_identifier, + [6512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(406), 1, + anon_sym_LBRACE, + ACTIONS(850), 1, + sym_unit, + [6522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(558), 1, + anon_sym_LBRACE, + STATE(58), 1, + sym_block, + [6532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(275), 1, + anon_sym_SEMI, + ACTIONS(277), 1, + anon_sym_RBRACE, + [6542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + STATE(52), 1, + sym_block, + [6552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(852), 1, + anon_sym_SEMI, + ACTIONS(854), 1, + anon_sym_RBRACE, + [6562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(642), 1, + anon_sym_LPAREN, + STATE(164), 1, + sym_arguments, + [6572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(856), 1, + anon_sym_LBRACE, + STATE(55), 1, + sym_keyframe_block_list, + [6582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + aux_sym_color_value_token1, + [6589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_RBRACE, + [6596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + sym_identifier, + [6603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + sym_identifier, + [6610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 1, + sym_identifier, + [6617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_SEMI, + [6624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_SEMI, + [6631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(275), 1, + anon_sym_SEMI, + [6638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(870), 1, + sym_identifier, + [6645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_RBRACE, + [6652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(852), 1, + anon_sym_SEMI, + [6659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(874), 1, + sym_identifier, + [6666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(876), 1, + sym_identifier, + [6673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(878), 1, + anon_sym_SEMI, + [6680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(880), 1, + sym_identifier, + [6687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + anon_sym_RBRACE, + [6694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + aux_sym_color_value_token1, + [6701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + sym_identifier, + [6708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(886), 1, + anon_sym_RBRACE, + [6715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + anon_sym_SEMI, + [6722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_RBRACE, + [6729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 1, + sym_identifier, + [6736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + sym_identifier, + [6743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_SEMI, + [6750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 1, + sym_identifier, + [6757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + ts_builtin_sym_end, + [6764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_color_value_token1, + [6771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + anon_sym_RBRACE, + [6778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_SEMI, + [6785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + sym_identifier, + [6792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, +}; + +static uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(2)] = 0, + [SMALL_STATE(3)] = 85, + [SMALL_STATE(4)] = 170, + [SMALL_STATE(5)] = 255, + [SMALL_STATE(6)] = 340, + [SMALL_STATE(7)] = 425, + [SMALL_STATE(8)] = 510, + [SMALL_STATE(9)] = 592, + [SMALL_STATE(10)] = 674, + [SMALL_STATE(11)] = 756, + [SMALL_STATE(12)] = 827, + [SMALL_STATE(13)] = 895, + [SMALL_STATE(14)] = 952, + [SMALL_STATE(15)] = 1006, + [SMALL_STATE(16)] = 1060, + [SMALL_STATE(17)] = 1098, + [SMALL_STATE(18)] = 1140, + [SMALL_STATE(19)] = 1182, + [SMALL_STATE(20)] = 1214, + [SMALL_STATE(21)] = 1256, + [SMALL_STATE(22)] = 1298, + [SMALL_STATE(23)] = 1340, + [SMALL_STATE(24)] = 1382, + [SMALL_STATE(25)] = 1429, + [SMALL_STATE(26)] = 1476, + [SMALL_STATE(27)] = 1521, + [SMALL_STATE(28)] = 1570, + [SMALL_STATE(29)] = 1617, + [SMALL_STATE(30)] = 1643, + [SMALL_STATE(31)] = 1669, + [SMALL_STATE(32)] = 1695, + [SMALL_STATE(33)] = 1721, + [SMALL_STATE(34)] = 1747, + [SMALL_STATE(35)] = 1773, + [SMALL_STATE(36)] = 1819, + [SMALL_STATE(37)] = 1845, + [SMALL_STATE(38)] = 1887, + [SMALL_STATE(39)] = 1913, + [SMALL_STATE(40)] = 1939, + [SMALL_STATE(41)] = 1985, + [SMALL_STATE(42)] = 2031, + [SMALL_STATE(43)] = 2057, + [SMALL_STATE(44)] = 2083, + [SMALL_STATE(45)] = 2109, + [SMALL_STATE(46)] = 2135, + [SMALL_STATE(47)] = 2177, + [SMALL_STATE(48)] = 2203, + [SMALL_STATE(49)] = 2229, + [SMALL_STATE(50)] = 2255, + [SMALL_STATE(51)] = 2281, + [SMALL_STATE(52)] = 2307, + [SMALL_STATE(53)] = 2333, + [SMALL_STATE(54)] = 2359, + [SMALL_STATE(55)] = 2385, + [SMALL_STATE(56)] = 2411, + [SMALL_STATE(57)] = 2437, + [SMALL_STATE(58)] = 2467, + [SMALL_STATE(59)] = 2493, + [SMALL_STATE(60)] = 2519, + [SMALL_STATE(61)] = 2545, + [SMALL_STATE(62)] = 2571, + [SMALL_STATE(63)] = 2597, + [SMALL_STATE(64)] = 2623, + [SMALL_STATE(65)] = 2649, + [SMALL_STATE(66)] = 2675, + [SMALL_STATE(67)] = 2701, + [SMALL_STATE(68)] = 2727, + [SMALL_STATE(69)] = 2753, + [SMALL_STATE(70)] = 2779, + [SMALL_STATE(71)] = 2805, + [SMALL_STATE(72)] = 2831, + [SMALL_STATE(73)] = 2857, + [SMALL_STATE(74)] = 2883, + [SMALL_STATE(75)] = 2909, + [SMALL_STATE(76)] = 2935, + [SMALL_STATE(77)] = 2961, + [SMALL_STATE(78)] = 2987, + [SMALL_STATE(79)] = 3013, + [SMALL_STATE(80)] = 3040, + [SMALL_STATE(81)] = 3067, + [SMALL_STATE(82)] = 3108, + [SMALL_STATE(83)] = 3132, + [SMALL_STATE(84)] = 3156, + [SMALL_STATE(85)] = 3196, + [SMALL_STATE(86)] = 3232, + [SMALL_STATE(87)] = 3272, + [SMALL_STATE(88)] = 3312, + [SMALL_STATE(89)] = 3336, + [SMALL_STATE(90)] = 3372, + [SMALL_STATE(91)] = 3396, + [SMALL_STATE(92)] = 3436, + [SMALL_STATE(93)] = 3460, + [SMALL_STATE(94)] = 3484, + [SMALL_STATE(95)] = 3508, + [SMALL_STATE(96)] = 3532, + [SMALL_STATE(97)] = 3556, + [SMALL_STATE(98)] = 3593, + [SMALL_STATE(99)] = 3620, + [SMALL_STATE(100)] = 3657, + [SMALL_STATE(101)] = 3684, + [SMALL_STATE(102)] = 3718, + [SMALL_STATE(103)] = 3752, + [SMALL_STATE(104)] = 3786, + [SMALL_STATE(105)] = 3820, + [SMALL_STATE(106)] = 3846, + [SMALL_STATE(107)] = 3880, + [SMALL_STATE(108)] = 3914, + [SMALL_STATE(109)] = 3948, + [SMALL_STATE(110)] = 3982, + [SMALL_STATE(111)] = 4008, + [SMALL_STATE(112)] = 4042, + [SMALL_STATE(113)] = 4076, + [SMALL_STATE(114)] = 4110, + [SMALL_STATE(115)] = 4136, + [SMALL_STATE(116)] = 4170, + [SMALL_STATE(117)] = 4204, + [SMALL_STATE(118)] = 4238, + [SMALL_STATE(119)] = 4272, + [SMALL_STATE(120)] = 4306, + [SMALL_STATE(121)] = 4340, + [SMALL_STATE(122)] = 4374, + [SMALL_STATE(123)] = 4394, + [SMALL_STATE(124)] = 4414, + [SMALL_STATE(125)] = 4434, + [SMALL_STATE(126)] = 4454, + [SMALL_STATE(127)] = 4476, + [SMALL_STATE(128)] = 4498, + [SMALL_STATE(129)] = 4520, + [SMALL_STATE(130)] = 4540, + [SMALL_STATE(131)] = 4560, + [SMALL_STATE(132)] = 4580, + [SMALL_STATE(133)] = 4600, + [SMALL_STATE(134)] = 4620, + [SMALL_STATE(135)] = 4644, + [SMALL_STATE(136)] = 4664, + [SMALL_STATE(137)] = 4684, + [SMALL_STATE(138)] = 4704, + [SMALL_STATE(139)] = 4724, + [SMALL_STATE(140)] = 4744, + [SMALL_STATE(141)] = 4766, + [SMALL_STATE(142)] = 4806, + [SMALL_STATE(143)] = 4826, + [SMALL_STATE(144)] = 4866, + [SMALL_STATE(145)] = 4886, + [SMALL_STATE(146)] = 4906, + [SMALL_STATE(147)] = 4931, + [SMALL_STATE(148)] = 4956, + [SMALL_STATE(149)] = 4981, + [SMALL_STATE(150)] = 5000, + [SMALL_STATE(151)] = 5025, + [SMALL_STATE(152)] = 5050, + [SMALL_STATE(153)] = 5075, + [SMALL_STATE(154)] = 5110, + [SMALL_STATE(155)] = 5135, + [SMALL_STATE(156)] = 5154, + [SMALL_STATE(157)] = 5173, + [SMALL_STATE(158)] = 5198, + [SMALL_STATE(159)] = 5219, + [SMALL_STATE(160)] = 5238, + [SMALL_STATE(161)] = 5273, + [SMALL_STATE(162)] = 5294, + [SMALL_STATE(163)] = 5312, + [SMALL_STATE(164)] = 5330, + [SMALL_STATE(165)] = 5348, + [SMALL_STATE(166)] = 5366, + [SMALL_STATE(167)] = 5384, + [SMALL_STATE(168)] = 5402, + [SMALL_STATE(169)] = 5420, + [SMALL_STATE(170)] = 5454, + [SMALL_STATE(171)] = 5472, + [SMALL_STATE(172)] = 5493, + [SMALL_STATE(173)] = 5511, + [SMALL_STATE(174)] = 5529, + [SMALL_STATE(175)] = 5544, + [SMALL_STATE(176)] = 5559, + [SMALL_STATE(177)] = 5574, + [SMALL_STATE(178)] = 5589, + [SMALL_STATE(179)] = 5612, + [SMALL_STATE(180)] = 5635, + [SMALL_STATE(181)] = 5656, + [SMALL_STATE(182)] = 5671, + [SMALL_STATE(183)] = 5686, + [SMALL_STATE(184)] = 5701, + [SMALL_STATE(185)] = 5716, + [SMALL_STATE(186)] = 5731, + [SMALL_STATE(187)] = 5752, + [SMALL_STATE(188)] = 5773, + [SMALL_STATE(189)] = 5788, + [SMALL_STATE(190)] = 5803, + [SMALL_STATE(191)] = 5824, + [SMALL_STATE(192)] = 5845, + [SMALL_STATE(193)] = 5865, + [SMALL_STATE(194)] = 5877, + [SMALL_STATE(195)] = 5897, + [SMALL_STATE(196)] = 5909, + [SMALL_STATE(197)] = 5921, + [SMALL_STATE(198)] = 5933, + [SMALL_STATE(199)] = 5945, + [SMALL_STATE(200)] = 5957, + [SMALL_STATE(201)] = 5976, + [SMALL_STATE(202)] = 5991, + [SMALL_STATE(203)] = 6010, + [SMALL_STATE(204)] = 6023, + [SMALL_STATE(205)] = 6038, + [SMALL_STATE(206)] = 6055, + [SMALL_STATE(207)] = 6074, + [SMALL_STATE(208)] = 6089, + [SMALL_STATE(209)] = 6104, + [SMALL_STATE(210)] = 6123, + [SMALL_STATE(211)] = 6138, + [SMALL_STATE(212)] = 6155, + [SMALL_STATE(213)] = 6170, + [SMALL_STATE(214)] = 6185, + [SMALL_STATE(215)] = 6199, + [SMALL_STATE(216)] = 6213, + [SMALL_STATE(217)] = 6227, + [SMALL_STATE(218)] = 6243, + [SMALL_STATE(219)] = 6253, + [SMALL_STATE(220)] = 6263, + [SMALL_STATE(221)] = 6273, + [SMALL_STATE(222)] = 6287, + [SMALL_STATE(223)] = 6299, + [SMALL_STATE(224)] = 6313, + [SMALL_STATE(225)] = 6323, + [SMALL_STATE(226)] = 6339, + [SMALL_STATE(227)] = 6353, + [SMALL_STATE(228)] = 6367, + [SMALL_STATE(229)] = 6380, + [SMALL_STATE(230)] = 6393, + [SMALL_STATE(231)] = 6404, + [SMALL_STATE(232)] = 6417, + [SMALL_STATE(233)] = 6430, + [SMALL_STATE(234)] = 6443, + [SMALL_STATE(235)] = 6456, + [SMALL_STATE(236)] = 6469, + [SMALL_STATE(237)] = 6482, + [SMALL_STATE(238)] = 6492, + [SMALL_STATE(239)] = 6502, + [SMALL_STATE(240)] = 6512, + [SMALL_STATE(241)] = 6522, + [SMALL_STATE(242)] = 6532, + [SMALL_STATE(243)] = 6542, + [SMALL_STATE(244)] = 6552, + [SMALL_STATE(245)] = 6562, + [SMALL_STATE(246)] = 6572, + [SMALL_STATE(247)] = 6582, + [SMALL_STATE(248)] = 6589, + [SMALL_STATE(249)] = 6596, + [SMALL_STATE(250)] = 6603, + [SMALL_STATE(251)] = 6610, + [SMALL_STATE(252)] = 6617, + [SMALL_STATE(253)] = 6624, + [SMALL_STATE(254)] = 6631, + [SMALL_STATE(255)] = 6638, + [SMALL_STATE(256)] = 6645, + [SMALL_STATE(257)] = 6652, + [SMALL_STATE(258)] = 6659, + [SMALL_STATE(259)] = 6666, + [SMALL_STATE(260)] = 6673, + [SMALL_STATE(261)] = 6680, + [SMALL_STATE(262)] = 6687, + [SMALL_STATE(263)] = 6694, + [SMALL_STATE(264)] = 6701, + [SMALL_STATE(265)] = 6708, + [SMALL_STATE(266)] = 6715, + [SMALL_STATE(267)] = 6722, + [SMALL_STATE(268)] = 6729, + [SMALL_STATE(269)] = 6736, + [SMALL_STATE(270)] = 6743, + [SMALL_STATE(271)] = 6750, + [SMALL_STATE(272)] = 6757, + [SMALL_STATE(273)] = 6764, + [SMALL_STATE(274)] = 6771, + [SMALL_STATE(275)] = 6778, + [SMALL_STATE(276)] = 6785, + [SMALL_STATE(277)] = 6792, }; static TSParseActionEntry ts_parse_actions[] = { @@ -7899,11 +9516,15 @@ extern const TSLanguage *tree_sitter_css(void) { .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, + .large_state_count = LARGE_STATE_COUNT, .symbol_metadata = ts_symbol_metadata, .parse_table = (const unsigned short *)ts_parse_table, + .small_parse_table = (const uint16_t *)ts_small_parse_table, + .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, .parse_actions = ts_parse_actions, .lex_modes = ts_lex_modes, .symbol_names = ts_symbol_names, + .public_symbol_map = ts_symbol_map, .alias_sequences = (const TSSymbol *)ts_alias_sequences, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index ab7d6e3..9df91f8 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -115,6 +115,10 @@ struct TSLanguage { const TSFieldMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const char **field_names; + uint32_t large_state_count; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSSymbol *public_symbol_map; }; /* @@ -157,6 +161,8 @@ struct TSLanguage { * Parse Table Macros */ +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + #define STATE(id) id #define ACTIONS(id) id