diff --git a/.gitignore b/.gitignore index 21dbc97..47b6d68 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,3 @@ Cargo.lock Cargo.toml log.html node_modules/ -src/grammar.json -src/node-types.json -src/parser.c -src/tree_sitter/parser.h diff --git a/src/grammar.json b/src/grammar.json new file mode 100644 index 0000000..57a57c7 --- /dev/null +++ b/src/grammar.json @@ -0,0 +1,14610 @@ +{ + "name": "ada", + "word": "identifier", + "rules": { + "compilation": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "compilation_unit" + } + }, + "identifier": { + "type": "PATTERN", + "value": "[a-zA-Z\\u{80}-\\u{10FFFF}][0-9a-zA-Z_\\u{80}-\\u{10FFFF}]*" + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + } + }, + "string_literal": { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "\"[^\"]*\"" + } + }, + "character_literal": { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "'.'" + } + }, + "numeric_literal": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[0-9][0-9_]*(\\.[0-9]+)?([eE][0-9_-]+)?" + }, + { + "type": "PATTERN", + "value": "[0-9]+#[0-9a-fA-F._-]+#" + } + ] + } + }, + "relational_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": ">=" + } + ] + }, + "binary_adding_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "&" + } + ] + }, + "unary_adding_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + "multiplying_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "mod" + }, + { + "type": "STRING", + "value": "rem" + } + ] + }, + "tick": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "'" + } + ] + }, + "name": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "attribute_reference" + }, + { + "type": "SYMBOL", + "name": "function_call" + }, + { + "type": "SYMBOL", + "name": "qualified_expression" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "SYMBOL", + "name": "character_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + "name_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + }, + "defining_identifier_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + "attribute_reference": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "tick" + }, + { + "type": "SYMBOL", + "name": "attribute_designator" + } + ] + }, + { + "type": "SYMBOL", + "name": "reduction_attribute_reference" + } + ] + }, + "reduction_attribute_reference": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "value_sequence" + }, + { + "type": "SYMBOL", + "name": "tick" + }, + { + "type": "SYMBOL", + "name": "reduction_attribute_designator" + } + ] + }, + "reduction_attribute_designator": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "reduction_specification" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "reduction_specification": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "value_sequence": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "is_parallel", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][rR][aA][lL][lL][eE][lL]" + } + } + }, + "named": false, + "value": "parallel" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "chunk_specification" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "iterated_element_association" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "chunk_specification": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "SYMBOL", + "name": "discrete_subtype_definition" + } + ] + } + ] + }, + "iterated_element_association": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "loop_parameter_specification" + }, + { + "type": "SYMBOL", + "name": "iterator_specification" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "discrete_subtype_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "range_g" + } + ] + }, + "loop_parameter_specification": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][vV][eE][rR][sS][eE]" + } + } + }, + "named": false, + "value": "reverse" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "discrete_subtype_definition" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "iterator_filter" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "loop_parameter_subtype_indication": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "access_definition" + } + ] + }, + "iterator_filter": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "iterator_specification": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "loop_parameter_subtype_indication" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][fF]" + } + } + }, + "named": false, + "value": "of" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][vV][eE][rR][sS][eE]" + } + } + }, + "named": false, + "value": "reverse" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "iterator_filter" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "attribute_designator": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][cC][cC][eE][sS][sS]" + } + } + }, + "named": false, + "value": "access" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][iI][gG][iI][tT][sS]" + } + } + }, + "named": false, + "value": "digits" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[mM][oO][dD]" + } + } + }, + "named": false, + "value": "mod" + } + ] + }, + "function_call": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "actual_parameter_part" + } + ] + }, + "qualified_expression": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "tick" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SYMBOL", + "name": "aggregate" + } + ] + } + ] + }, + "compilation_unit": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "with_clause" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_declarative_item" + } + ] + }, + { + "type": "SYMBOL", + "name": "statement" + }, + { + "type": "SYMBOL", + "name": "subunit" + }, + { + "type": "SYMBOL", + "name": "entry_declaration" + } + ] + }, + "_declarative_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_basic_declarative_item" + }, + { + "type": "SYMBOL", + "name": "proper_body" + }, + { + "type": "SYMBOL", + "name": "body_stub" + } + ] + }, + "_basic_declarative_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_basic_declaration" + }, + { + "type": "SYMBOL", + "name": "aspect_clause" + }, + { + "type": "SYMBOL", + "name": "use_clause" + } + ] + }, + "_basic_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_declaration" + }, + { + "type": "SYMBOL", + "name": "subtype_declaration" + }, + { + "type": "SYMBOL", + "name": "object_declaration" + }, + { + "type": "SYMBOL", + "name": "number_declaration" + }, + { + "type": "SYMBOL", + "name": "subprogram_declaration" + }, + { + "type": "SYMBOL", + "name": "expression_function_declaration" + }, + { + "type": "SYMBOL", + "name": "null_procedure_declaration" + }, + { + "type": "SYMBOL", + "name": "_package_declaration" + }, + { + "type": "SYMBOL", + "name": "renaming_declaration" + }, + { + "type": "SYMBOL", + "name": "exception_declaration" + }, + { + "type": "SYMBOL", + "name": "generic_declaration" + }, + { + "type": "SYMBOL", + "name": "generic_instantiation" + } + ] + }, + "_package_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "package_specification" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "package_specification": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_basic_declarative_item_pragma" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_basic_declarative_item_pragma" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "FIELD", + "name": "endname", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "with_clause": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "is_limited", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "is_private", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "FIELD", + "name": "names", + "content": { + "type": "SYMBOL", + "name": "name_list" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "use_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "is_all", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][lL]" + } + } + }, + "named": false, + "value": "all" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "is_type", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name_list" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "subunit": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][pP][aA][rR][aA][tT][eE]" + } + } + }, + "named": false, + "value": "separate" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "parent_unit_name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "proper_body" + } + ] + }, + "proper_body": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subprogram_body" + }, + { + "type": "SYMBOL", + "name": "package_body" + }, + { + "type": "SYMBOL", + "name": "task_body" + }, + { + "type": "SYMBOL", + "name": "protected_body" + } + ] + }, + "subprogram_body": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_declarative_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" + } + } + }, + "named": false, + "value": "begin" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "package_body": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][oO][dD][yY]" + } + } + }, + "named": false, + "value": "body" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_declarative_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" + } + } + }, + "named": false, + "value": "begin" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "subtype_indication": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "subtype_mark", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "constraint" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "constraint": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "scalar_constraint" + }, + { + "type": "SYMBOL", + "name": "index_constraint" + } + ] + }, + "scalar_constraint": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "range_constraint" + }, + { + "type": "SYMBOL", + "name": "digits_constraint" + }, + { + "type": "SYMBOL", + "name": "delta_constraint" + } + ] + }, + "range_g": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "range_attribute_reference", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "tick" + }, + { + "type": "SYMBOL", + "name": "range_attribute_designator" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "simple_expression" + } + ] + } + ] + }, + "range_attribute_designator": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "range_constraint": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "SYMBOL", + "name": "range_g" + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "relation" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][nN][dD]" + } + } + }, + "named": false, + "value": "and" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + } + } + }, + "named": false, + "value": "then" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "relation" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "relation" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][rR]" + } + } + }, + "named": false, + "value": "or" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" + } + } + }, + "named": false, + "value": "else" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "relation" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "relation" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[xX][oO][rR]" + } + } + }, + "named": false, + "value": "xor" + }, + { + "type": "SYMBOL", + "name": "relation" + } + ] + } + } + ] + } + ] + }, + "relation": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "relational_operator" + }, + { + "type": "SYMBOL", + "name": "simple_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][oO][tT]" + } + } + }, + "named": false, + "value": "not" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "SYMBOL", + "name": "membership_choice_list" + } + ] + }, + { + "type": "SYMBOL", + "name": "raise_expression" + } + ] + }, + "raise_expression": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][iI][sS][eE]" + } + } + }, + "named": false, + "value": "raise" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "simple_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "membership_choice_list": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "membership_choice" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "membership_choice" + } + ] + } + } + ] + } + }, + "membership_choice": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "SYMBOL", + "name": "range_g" + } + ] + }, + "simple_expression": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "unary_adding_operator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "term" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "binary_adding_operator" + }, + { + "type": "SYMBOL", + "name": "term" + } + ] + } + } + ] + }, + "term": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "factor" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "multiplying_operator" + }, + { + "type": "SYMBOL", + "name": "factor" + } + ] + } + } + ] + }, + "factor": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "primary" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "**" + }, + { + "type": "SYMBOL", + "name": "primary" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS]" + } + } + }, + "named": false, + "value": "abs" + }, + { + "type": "SYMBOL", + "name": "primary" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][oO][tT]" + } + } + }, + "named": false, + "value": "not" + }, + { + "type": "SYMBOL", + "name": "primary" + } + ] + } + ] + }, + "_parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "quantified_expression" + }, + { + "type": "SYMBOL", + "name": "declare_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "primary": { + "type": "PREC", + "value": 2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "numeric_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "aggregate" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "allocator" + }, + { + "type": "SYMBOL", + "name": "_parenthesized_expression" + } + ] + } + }, + "allocator": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subpool_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "subtype_indication_paren_constraint" + } + ] + }, + "subtype_indication_paren_constraint": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "index_constraint" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "subpool_specification": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "access_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "access_to_object_definition" + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][cC][cC][eE][sS][sS]" + } + } + }, + "named": false, + "value": "access" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "access_to_subprogram_definition" + } + ] + } + ] + } + ] + }, + "access_to_object_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][cC][cC][eE][sS][sS]" + } + } + }, + "named": false, + "value": "access" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "general_access_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "subtype_indication" + } + ] + }, + "general_access_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][lL]" + } + } + }, + "named": false, + "value": "all" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][oO][nN][sS][tT][aA][nN][tT]" + } + } + }, + "named": false, + "value": "constant" + } + ] + }, + "access_to_subprogram_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" + } + } + }, + "named": false, + "value": "procedure" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_part" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "function" + }, + { + "type": "SYMBOL", + "name": "parameter_and_result_profile" + } + ] + } + ] + }, + "access_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][cC][cC][eE][sS][sS]" + } + } + }, + "named": false, + "value": "access" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][oO][nN][sS][tT][aA][nN][tT]" + } + } + }, + "named": false, + "value": "constant" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" + } + } + }, + "named": false, + "value": "procedure" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_parameter_profile" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "function" + }, + { + "type": "SYMBOL", + "name": "parameter_and_result_profile" + } + ] + } + ] + } + ] + }, + "actual_parameter_part": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_association" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "parameter_association" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "quantified_expression" + }, + { + "type": "SYMBOL", + "name": "declare_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter_association": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "component_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "<>" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "conditional_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "if_expression" + }, + { + "type": "SYMBOL", + "name": "case_expression" + } + ] + }, + "conditional_quantified_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "if_expression" + }, + { + "type": "SYMBOL", + "name": "case_expression" + }, + { + "type": "SYMBOL", + "name": "quantified_expression" + } + ] + }, + "quantified_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "SYMBOL", + "name": "quantifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "loop_parameter_specification" + }, + { + "type": "SYMBOL", + "name": "iterator_specification" + } + ] + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "predicate", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "declare_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][cC][lL][aA][rR][eE]" + } + } + }, + "named": false, + "value": "declare" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "declare_item" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" + } + } + }, + "named": false, + "value": "begin" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "declare_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "object_declaration" + }, + { + "type": "SYMBOL", + "name": "object_renaming_declaration" + } + ] + }, + "quantifier": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][lL]" + } + } + }, + "named": false, + "value": "all" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][oO][mM][eE]" + } + } + }, + "named": false, + "value": "some" + } + ] + }, + "case_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][aA][sS][eE]" + } + } + }, + "named": false, + "value": "case" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "case_expression_alternative" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "case_expression_alternative" + } + ] + } + } + ] + } + ] + }, + "case_expression_alternative": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "SYMBOL", + "name": "discrete_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "component_choice_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + "aggregate": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "record_aggregate" + }, + { + "type": "SYMBOL", + "name": "extension_aggregate" + }, + { + "type": "SYMBOL", + "name": "array_aggregate" + }, + { + "type": "SYMBOL", + "name": "delta_aggregate" + } + ] + }, + "delta_aggregate": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "record_delta_aggregate" + }, + { + "type": "SYMBOL", + "name": "array_delta_aggregate" + } + ] + }, + "extension_aggregate": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "record_component_association_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "record_delta_aggregate": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "SYMBOL", + "name": "record_component_association_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "array_delta_aggregate": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "SYMBOL", + "name": "_array_component_association_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "SYMBOL", + "name": "_array_component_association_list" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + }, + "record_aggregate": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "record_component_association_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "record_component_association_list": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][cC][oO][rR][dD]" + } + } + }, + "named": false, + "value": "record" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "_named_record_component_association" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "_named_record_component_association" + } + ] + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_named_record_component_association" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_named_record_component_association" + } + ] + } + } + ] + } + ] + }, + "_named_record_component_association": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "component_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "<>" + } + ] + } + ] + }, + "null_exclusion": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][oO][tT]" + } + } + }, + "named": false, + "value": "not" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + } + ] + }, + "index_constraint": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "discrete_range" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "discrete_range" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "digits_constraint": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][iI][gG][iI][tT][sS]" + } + } + }, + "named": false, + "value": "digits" + }, + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "range_constraint" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "delta_constraint": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "range_constraint" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_basic_declarative_item_pragma": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_basic_declarative_item" + }, + { + "type": "SYMBOL", + "name": "pragma_g" + } + ] + }, + "type_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "full_type_declaration" + }, + { + "type": "SYMBOL", + "name": "incomplete_type_declaration" + }, + { + "type": "SYMBOL", + "name": "private_type_declaration" + }, + { + "type": "SYMBOL", + "name": "private_extension_declaration" + } + ] + }, + "full_type_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "known_discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SYMBOL", + "name": "task_type_declaration" + }, + { + "type": "SYMBOL", + "name": "protected_type_declaration" + } + ] + }, + "private_type_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][gG][gG][eE][dD]" + } + } + }, + "named": false, + "value": "tagged" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "private_extension_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][yY][nN][cC][hH][rR][oO][nN][iI][zZ][eE][dD]" + } + } + }, + "named": false, + "value": "synchronized" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][nN][dD]" + } + } + }, + "named": false, + "value": "and" + }, + { + "type": "SYMBOL", + "name": "interface_list" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "discriminant_part": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "known_discriminant_part" + }, + { + "type": "SYMBOL", + "name": "unknown_discriminant_part" + } + ] + }, + "unknown_discriminant_part": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "known_discriminant_part": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "discriminant_specification_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "incomplete_type_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][gG][gG][eE][dD]" + } + } + }, + "named": false, + "value": "tagged" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "discriminant_specification_list": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_specification" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "discriminant_specification" + } + ] + } + } + ] + } + }, + "discriminant_specification": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "SYMBOL", + "name": "access_definition" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "type_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enumeration_type_definition" + }, + { + "type": "SYMBOL", + "name": "integer_type_definition" + }, + { + "type": "SYMBOL", + "name": "real_type_definition" + }, + { + "type": "SYMBOL", + "name": "array_type_definition" + }, + { + "type": "SYMBOL", + "name": "record_type_definition" + }, + { + "type": "SYMBOL", + "name": "access_type_definition" + }, + { + "type": "SYMBOL", + "name": "derived_type_definition" + }, + { + "type": "SYMBOL", + "name": "interface_type_definition" + } + ] + }, + "array_type_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "unconstrained_array_definition" + }, + { + "type": "SYMBOL", + "name": "constrained_array_definition" + } + ] + }, + "unconstrained_array_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][rR][rR][aA][yY]" + } + } + }, + "named": false, + "value": "array" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_index_subtype_definition_list" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][fF]" + } + } + }, + "named": false, + "value": "of" + }, + { + "type": "SYMBOL", + "name": "component_definition" + } + ] + }, + "constrained_array_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][rR][rR][aA][yY]" + } + } + }, + "named": false, + "value": "array" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_discrete_subtype_definition_list" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][fF]" + } + } + }, + "named": false, + "value": "of" + }, + { + "type": "SYMBOL", + "name": "component_definition" + } + ] + }, + "_discrete_subtype_definition_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "discrete_subtype_definition" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "discrete_subtype_definition" + } + ] + } + } + ] + }, + "discrete_range": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "range_g" + } + ] + }, + "_index_subtype_definition_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "index_subtype_definition" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "index_subtype_definition" + } + ] + } + } + ] + }, + "index_subtype_definition": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "enumeration_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_enumeration_literal_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_enumeration_literal_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_enumeration_literal_specification" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_enumeration_literal_specification" + } + ] + } + } + ] + }, + "_enumeration_literal_specification": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "character_literal" + } + ] + }, + "integer_type_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "signed_integer_type_definition" + }, + { + "type": "SYMBOL", + "name": "modular_type_definition" + } + ] + }, + "modular_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[mM][oO][dD]" + } + } + }, + "named": false, + "value": "mod" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "real_type_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "floating_point_definition" + }, + { + "type": "SYMBOL", + "name": "fixed_point_definition" + } + ] + }, + "floating_point_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][iI][gG][iI][tT][sS]" + } + } + }, + "named": false, + "value": "digits" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "real_range_specification" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "real_range_specification": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "simple_expression" + } + ] + }, + "fixed_point_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ordinary_fixed_point_definition" + }, + { + "type": "SYMBOL", + "name": "decimal_fixed_point_definition" + } + ] + }, + "decimal_fixed_point_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][iI][gG][iI][tT][sS]" + } + } + }, + "named": false, + "value": "digits" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "real_range_specification" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "ordinary_fixed_point_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "real_range_specification" + } + ] + }, + "signed_integer_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "SYMBOL", + "name": "simple_expression" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "simple_expression" + } + ] + }, + "derived_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][nN][dD]" + } + } + }, + "named": false, + "value": "and" + }, + { + "type": "SYMBOL", + "name": "interface_list" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "record_extension_part" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "interface_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][sS][kK]" + } + } + }, + "named": false, + "value": "task" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][yY][nN][cC][hH][rR][oO][nN][iI][zZ][eE][dD]" + } + } + }, + "named": false, + "value": "synchronized" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN][tT][eE][rR][fF][aA][cC][eE]" + } + } + }, + "named": false, + "value": "interface" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][nN][dD]" + } + } + }, + "named": false, + "value": "and" + }, + { + "type": "SYMBOL", + "name": "interface_list" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "interface_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][nN][dD]" + } + } + }, + "named": false, + "value": "and" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + }, + "record_extension_part": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "record_definition" + } + ] + }, + "record_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][gG][gG][eE][dD]" + } + } + }, + "named": false, + "value": "tagged" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "record_definition" + } + ] + }, + "record_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][cC][oO][rR][dD]" + } + } + }, + "named": false, + "value": "record" + }, + { + "type": "SYMBOL", + "name": "component_list" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][cC][oO][rR][dD]" + } + } + }, + "named": false, + "value": "record" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][cC][oO][rR][dD]" + } + } + }, + "named": false, + "value": "record" + } + ] + } + ] + }, + "component_list": { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "component_item" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "component_item" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "variant_part" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[;;]" + } + } + }, + "named": false, + "value": ";" + } + ] + } + ] + }, + "component_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "component_declaration" + }, + { + "type": "SYMBOL", + "name": "aspect_clause" + } + ] + }, + "component_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "component_definition" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "component_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][iI][aA][sS][eE][dD]" + } + } + }, + "named": false, + "value": "aliased" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "access_definition" + } + ] + } + ] + }, + "array_aggregate": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "positional_array_aggregate" + }, + { + "type": "SYMBOL", + "name": "null_array_aggregate" + }, + { + "type": "SYMBOL", + "name": "named_array_aggregate" + } + ] + }, + "positional_array_aggregate": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][tT][hH][eE][rR][sS]" + } + } + }, + "named": false, + "value": "others" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][tT][hH][eE][rR][sS]" + } + } + }, + "named": false, + "value": "others" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "<>" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + }, + "null_array_aggregate": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "named_array_aggregate": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_array_component_association_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_array_component_association_list" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + }, + "_array_component_association_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "array_component_association" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "array_component_association" + } + ] + } + } + ] + }, + "array_component_association": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "discrete_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "<>" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "iterated_element_association" + } + ] + }, + "discrete_choice_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "discrete_choice" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "discrete_choice" + } + ] + } + } + ] + }, + "discrete_choice": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "range_g" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][tT][hH][eE][rR][sS]" + } + } + }, + "named": false, + "value": "others" + } + ] + }, + "aspect_association": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_mark" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "aspect_definition" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "aspect_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_definition_clause" + }, + { + "type": "SYMBOL", + "name": "enumeration_representation_clause" + }, + { + "type": "SYMBOL", + "name": "record_representation_clause" + }, + { + "type": "SYMBOL", + "name": "at_clause" + } + ] + }, + "aspect_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "global_aspect_definition" + } + ] + }, + "aspect_mark": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "tick" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "aspect_mark_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_association" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "aspect_association" + } + ] + } + } + ] + }, + "aspect_specification": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "aspect_mark_list" + } + ] + }, + "assign_value": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "at_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][tT]" + } + } + }, + "named": false, + "value": "at" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "attribute_definition_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "tick" + }, + { + "type": "SYMBOL", + "name": "attribute_designator" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "body_stub": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subprogram_body_stub" + }, + { + "type": "SYMBOL", + "name": "package_body_stub" + }, + { + "type": "SYMBOL", + "name": "task_body_stub" + }, + { + "type": "SYMBOL", + "name": "protected_body_stub" + } + ] + }, + "subprogram_body_stub": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][pP][aA][rR][aA][tT][eE]" + } + } + }, + "named": false, + "value": "separate" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "package_body_stub": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][oO][dD][yY]" + } + } + }, + "named": false, + "value": "body" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][pP][aA][rR][aA][tT][eE]" + } + } + }, + "named": false, + "value": "separate" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "task_body": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][sS][kK]" + } + } + }, + "named": false, + "value": "task" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][oO][dD][yY]" + } + } + }, + "named": false, + "value": "body" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_declarative_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" + } + } + }, + "named": false, + "value": "begin" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "task_body_stub": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][sS][kK]" + } + } + }, + "named": false, + "value": "task" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][oO][dD][yY]" + } + } + }, + "named": false, + "value": "body" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][pP][aA][rR][aA][tT][eE]" + } + } + }, + "named": false, + "value": "separate" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "protected_operation_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subprogram_declaration" + }, + { + "type": "SYMBOL", + "name": "pragma_g" + }, + { + "type": "SYMBOL", + "name": "entry_declaration" + }, + { + "type": "SYMBOL", + "name": "aspect_clause" + } + ] + }, + "protected_element_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "protected_operation_declaration" + }, + { + "type": "SYMBOL", + "name": "component_declaration" + } + ] + }, + "protected_operation_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subprogram_declaration" + }, + { + "type": "SYMBOL", + "name": "subprogram_body" + }, + { + "type": "SYMBOL", + "name": "null_procedure_declaration" + }, + { + "type": "SYMBOL", + "name": "expression_function_declaration" + }, + { + "type": "SYMBOL", + "name": "entry_body" + }, + { + "type": "SYMBOL", + "name": "aspect_clause" + } + ] + }, + "protected_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "protected_operation_declaration" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "protected_element_declaration" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "protected_type_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "known_discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "interface_list" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "protected_definition" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "single_protected_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "interface_list" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "protected_definition" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "protected_body": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][oO][dD][yY]" + } + } + }, + "named": false, + "value": "body" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "protected_operation_item" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "protected_body_stub": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][tT][eE][cC][tT][eE][dD]" + } + } + }, + "named": false, + "value": "protected" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][oO][dD][yY]" + } + } + }, + "named": false, + "value": "body" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][pP][aA][rR][aA][tT][eE]" + } + } + }, + "named": false, + "value": "separate" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "choice_parameter_specification": { + "type": "SYMBOL", + "name": "identifier" + }, + "component_clause": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][tT]" + } + } + }, + "named": false, + "value": "at" + }, + { + "type": "FIELD", + "name": "position", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "FIELD", + "name": "first_bit", + "content": { + "type": "SYMBOL", + "name": "simple_expression" + } + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "FIELD", + "name": "last_bit", + "content": { + "type": "SYMBOL", + "name": "simple_expression" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "declarative_item_pragma": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarative_item" + }, + { + "type": "SYMBOL", + "name": "pragma_g" + } + ] + }, + "non_empty_declarative_part": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "declarative_item_pragma" + } + }, + "entry_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][tT][rR][yY]" + } + } + }, + "named": false, + "value": "entry" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "discrete_subtype_definition" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "parameter_profile", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_part" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "entry_body": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][tT][rR][yY]" + } + } + }, + "named": false, + "value": "entry" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_entry_body_formal_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "entry_barrier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_declarative_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" + } + } + }, + "named": false, + "value": "begin" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "entry_barrier": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "entry_index_specification": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "SYMBOL", + "name": "discrete_subtype_definition" + } + ] + }, + "enumeration_aggregate": { + "type": "SYMBOL", + "name": "array_aggregate" + }, + "enumeration_representation_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "SYMBOL", + "name": "enumeration_aggregate" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "exception_choice_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "exception_choice" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "exception_choice" + } + ] + } + } + ] + }, + "exception_choice": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][tT][hH][eE][rR][sS]" + } + } + }, + "named": false, + "value": "others" + } + ] + }, + "exception_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][xX][cC][eE][pP][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "exception" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "exception_handler": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "choice_parameter_specification" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "exception_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + } + ] + }, + "exception_handler_list": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "exception_handler" + }, + { + "type": "SYMBOL", + "name": "pragma_g" + } + ] + } + }, + "formal_part": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "parameter_specification_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "function_specification": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "function" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "parameter_and_result_profile" + } + ] + }, + "generic_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_subprogram_declaration" + }, + { + "type": "SYMBOL", + "name": "generic_package_declaration" + } + ] + }, + "generic_formal_part": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[gG][eE][nN][eE][rR][iI][cC]" + } + } + }, + "named": false, + "value": "generic" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "generic_formal_parameter_declaration" + } + } + ] + }, + "generic_formal_parameter_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_object_declaration" + }, + { + "type": "SYMBOL", + "name": "formal_type_declaration" + }, + { + "type": "SYMBOL", + "name": "formal_subprogram_declaration" + }, + { + "type": "SYMBOL", + "name": "formal_package_declaration" + }, + { + "type": "SYMBOL", + "name": "use_clause" + }, + { + "type": "SYMBOL", + "name": "pragma_g" + } + ] + }, + "generic_subprogram_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "generic_formal_part" + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "generic_package_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "generic_formal_part" + }, + { + "type": "SYMBOL", + "name": "package_specification" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "generic_instantiation": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" + } + } + }, + "named": false, + "value": "procedure" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "function" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "formal_object_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_mode" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_mode" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "access_definition" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "formal_type_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_complete_type_declaration" + }, + { + "type": "SYMBOL", + "name": "formal_incomplete_type_declaration" + } + ] + }, + "formal_complete_type_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "SYMBOL", + "name": "formal_type_definition" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][rR]" + } + } + }, + "named": false, + "value": "or" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "formal_incomplete_type_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][gG][gG][eE][dD]" + } + } + }, + "named": false, + "value": "tagged" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][rR]" + } + } + }, + "named": false, + "value": "or" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "formal_type_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_private_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_derived_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_discrete_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_signed_integer_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_modular_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_floating_point_definition" + }, + { + "type": "SYMBOL", + "name": "formal_ordinary_fixed_point_definition" + }, + { + "type": "SYMBOL", + "name": "formal_decimal_fixed_point_definition" + }, + { + "type": "SYMBOL", + "name": "formal_array_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_access_type_definition" + }, + { + "type": "SYMBOL", + "name": "formal_interface_type_definition" + } + ] + }, + "formal_private_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][gG][gG][eE][dD]" + } + } + }, + "named": false, + "value": "tagged" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + } + ] + }, + "formal_derived_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT][eE][dD]" + } + } + }, + "named": false, + "value": "limited" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][yY][nN][cC][hH][rR][oO][nN][iI][zZ][eE][dD]" + } + } + }, + "named": false, + "value": "synchronized" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][nN][dD]" + } + } + }, + "named": false, + "value": "and" + }, + { + "type": "SYMBOL", + "name": "interface_list" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "formal_discrete_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "formal_signed_integer_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][nN][gG][eE]" + } + } + }, + "named": false, + "value": "range" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "formal_modular_type_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[mM][oO][dD]" + } + } + }, + "named": false, + "value": "mod" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "formal_floating_point_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][iI][gG][iI][tT][sS]" + } + } + }, + "named": false, + "value": "digits" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "formal_ordinary_fixed_point_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "formal_decimal_fixed_point_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][tT][aA]" + } + } + }, + "named": false, + "value": "delta" + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][iI][gG][iI][tT][sS]" + } + } + }, + "named": false, + "value": "digits" + }, + { + "type": "STRING", + "value": "<>" + } + ] + }, + "formal_array_type_definition": { + "type": "SYMBOL", + "name": "array_type_definition" + }, + "formal_access_type_definition": { + "type": "SYMBOL", + "name": "access_type_definition" + }, + "formal_interface_type_definition": { + "type": "SYMBOL", + "name": "interface_type_definition" + }, + "formal_subprogram_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_concrete_subprogram_declaration" + }, + { + "type": "SYMBOL", + "name": "formal_abstract_subprogram_declaration" + } + ] + }, + "formal_concrete_subprogram_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "SYMBOL", + "name": "subprogram_default" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "formal_abstract_subprogram_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subprogram_default" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "subprogram_default": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "default_name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + } + ] + }, + "formal_package_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "formal_group_designator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "null" + }, + { + "type": "STRING", + "value": "all" + } + ] + }, + "extended_global_aspect_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "FIELD", + "name": "formal_parameter_designator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_group_designator" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][oO]" + } + } + }, + "named": false, + "value": "do" + }, + { + "type": "SYMBOL", + "name": "dispatching_operation_specifier" + } + ] + } + ] + }, + "disaptching_operation_set": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "dispatching_operation_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "dispatching_operation_specifier" + } + ] + } + } + ] + }, + "dispatching_operation_specifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "extended_global_aspect_element": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "FIELD", + "name": "formal_parameter_set", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_group_designator" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][oO]" + } + } + }, + "named": false, + "value": "do" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "dispatching_operation_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "dispatching_operation_specifier" + } + ] + } + } + ] + } + ] + } + ] + }, + "global_aspect_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "global_mode" + } + ] + }, + { + "type": "SYMBOL", + "name": "extended_global_aspect_definition" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "global_aspect_element" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "global_aspect_element" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "global_aspect_element": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "global_mode" + }, + { + "type": "SYMBOL", + "name": "global_set" + } + ] + }, + { + "type": "SYMBOL", + "name": "extended_global_aspect_definition" + } + ] + }, + "global_mode": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_mode" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][vV][eE][rR][rR][iI][dD][iI][nN][gG]" + } + } + }, + "named": false, + "value": "overriding" + } + ] + }, + "global_set": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + } + }, + "handled_sequence_of_statements": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][xX][cC][eE][pP][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "exception" + }, + { + "type": "SYMBOL", + "name": "exception_handler_list" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "loop_label": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "statement_identifier", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + "label": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<<" + }, + { + "type": "FIELD", + "name": "statement_identifier", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ">>" + } + ] + }, + "mod_clause": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][tT]" + } + } + }, + "named": false, + "value": "at" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[mM][oO][dD]" + } + } + }, + "named": false, + "value": "mod" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "non_empty_mode": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + } + } + }, + "named": false, + "value": "in" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][uU][tT]" + } + } + }, + "named": false, + "value": "out" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][uU][tT]" + } + } + }, + "named": false, + "value": "out" + } + ] + }, + "null_procedure_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "procedure_specification" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "null_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][uU][lL][lL]" + } + } + }, + "named": false, + "value": "null" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "number_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][oO][nN][sS][tT][aA][nN][tT]" + } + } + }, + "named": false, + "value": "constant" + }, + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "object_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][iI][aA][sS][eE][dD]" + } + } + }, + "named": false, + "value": "aliased" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][oO][nN][sS][tT][aA][nN][tT]" + } + } + }, + "named": false, + "value": "constant" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "access_definition" + }, + { + "type": "SYMBOL", + "name": "array_type_definition" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SYMBOL", + "name": "single_task_declaration" + }, + { + "type": "SYMBOL", + "name": "single_protected_declaration" + } + ] + }, + "single_task_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][sS][kK]" + } + } + }, + "named": false, + "value": "task" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "interface_list" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "task_definition" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "task_type_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][aA][sS][kK]" + } + } + }, + "named": false, + "value": "task" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "known_discriminant_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][eE][wW]" + } + } + }, + "named": false, + "value": "new" + }, + { + "type": "SYMBOL", + "name": "interface_list" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "task_definition" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "non_empty_entry_body_formal_part": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "entry_index_specification" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "parameter_profile", + "content": { + "type": "SYMBOL", + "name": "formal_part" + } + } + ] + }, + "task_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "entry_declaration" + }, + { + "type": "SYMBOL", + "name": "aspect_clause" + } + ] + }, + "task_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "task_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE]" + } + } + }, + "named": false, + "value": "private" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "task_item" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "overriding_indicator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[nN][oO][tT]" + } + } + }, + "named": false, + "value": "not" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][vV][eE][rR][rR][iI][dD][iI][nN][gG]" + } + } + }, + "named": false, + "value": "overriding" + } + ] + }, + "non_empty_parameter_profile": { + "type": "SYMBOL", + "name": "formal_part" + }, + "parameter_and_result_profile": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "result_profile" + } + ] + }, + "parameter_specification": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "defining_identifier_list" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][iI][aA][sS][eE][dD]" + } + } + }, + "named": false, + "value": "aliased" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_mode" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "parameter_specification_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_specification" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "parameter_specification" + } + ] + } + } + ] + }, + "pragma_g": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][aA][gG][mM][aA]" + } + } + }, + "named": false, + "value": "pragma" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pragma_argument_association" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pragma_argument_association" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "conditional_quantified_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "pragma_argument_association": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_mark" + }, + { + "type": "STRING", + "value": "=>" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "if_expression": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][fF]" + } + } + }, + "named": false, + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + } + } + }, + "named": false, + "value": "then" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "elsif_expression_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" + } + } + }, + "named": false, + "value": "else" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "elsif_expression_item": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][iI][fF]" + } + } + }, + "named": false, + "value": "elsif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + } + } + }, + "named": false, + "value": "then" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "procedure_specification": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" + } + } + }, + "named": false, + "value": "procedure" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_parameter_profile" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "record_representation_clause": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][sS][eE]" + } + } + }, + "named": false, + "value": "use" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][cC][oO][rR][dD]" + } + } + }, + "named": false, + "value": "record" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mod_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "component_clause" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][cC][oO][rR][dD]" + } + } + }, + "named": false, + "value": "record" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + "renaming_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "object_renaming_declaration" + }, + { + "type": "SYMBOL", + "name": "exception_renaming_declaration" + }, + { + "type": "SYMBOL", + "name": "package_renaming_declaration" + }, + { + "type": "SYMBOL", + "name": "subprogram_renaming_declaration" + }, + { + "type": "SYMBOL", + "name": "generic_renaming_declaration" + } + ] + }, + "object_renaming_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "access_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "exception_renaming_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][xX][cC][eE][pP][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "exception" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "package_renaming_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "subprogram_renaming_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "generic_renaming_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[gG][eE][nN][eE][rR][iI][cC]" + } + } + }, + "named": false, + "value": "generic" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][aA][cC][kK][aA][gG][eE]" + } + } + }, + "named": false, + "value": "package" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[gG][eE][nN][eE][rR][iI][cC]" + } + } + }, + "named": false, + "value": "generic" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" + } + } + }, + "named": false, + "value": "procedure" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[gG][eE][nN][eE][rR][iI][cC]" + } + } + }, + "named": false, + "value": "generic" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" + } + } + }, + "named": false, + "value": "function" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][nN][aA][mM][eE][sS]" + } + } + }, + "named": false, + "value": "renames" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "result_profile": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][tT][uU][rR][nN]" + } + } + }, + "named": false, + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + }, + { + "type": "SYMBOL", + "name": "access_definition" + } + ] + } + ] + }, + "sequence_of_statements": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "label" + } + } + ] + } + }, + "simple_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_statement" + }, + { + "type": "SYMBOL", + "name": "assignment_statement" + }, + { + "type": "SYMBOL", + "name": "exit_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + }, + { + "type": "SYMBOL", + "name": "procedure_call_statement" + }, + { + "type": "SYMBOL", + "name": "simple_return_statement" + }, + { + "type": "SYMBOL", + "name": "requeue_statement" + }, + { + "type": "SYMBOL", + "name": "delay_statement" + }, + { + "type": "SYMBOL", + "name": "abort_statement" + }, + { + "type": "SYMBOL", + "name": "raise_statement" + }, + { + "type": "SYMBOL", + "name": "pragma_g" + } + ] + }, + "statement": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + } + ] + }, + "compound_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "loop_statement" + }, + { + "type": "SYMBOL", + "name": "block_statement" + }, + { + "type": "SYMBOL", + "name": "extended_return_statement" + }, + { + "type": "SYMBOL", + "name": "accept_statement" + }, + { + "type": "SYMBOL", + "name": "select_statement" + } + ] + }, + "select_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "selective_accept" + }, + { + "type": "SYMBOL", + "name": "timed_entry_call" + }, + { + "type": "SYMBOL", + "name": "conditional_entry_call" + }, + { + "type": "SYMBOL", + "name": "asynchronous_select" + } + ] + }, + "entry_call_alternative": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "procedure_call_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "asynchronous_select": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "SYMBOL", + "name": "triggering_alternative" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + } + } + }, + "named": false, + "value": "then" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][oO][rR][tT]" + } + } + }, + "named": false, + "value": "abort" + }, + { + "type": "FIELD", + "name": "abortable_part", + "content": { + "type": "SYMBOL", + "name": "sequence_of_statements" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "triggering_alternative": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "procedure_call_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "delay_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "conditional_entry_call": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "SYMBOL", + "name": "entry_call_alternative" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" + } + } + }, + "named": false, + "value": "else" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "delay_alternative": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "delay_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "timed_entry_call": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "SYMBOL", + "name": "entry_call_alternative" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][rR]" + } + } + }, + "named": false, + "value": "or" + }, + { + "type": "SYMBOL", + "name": "delay_alternative" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "guard": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "=>" + } + ] + }, + "guard_select": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "guard" + }, + { + "type": "SYMBOL", + "name": "select_alternative" + } + ] + }, + "select_alternative": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "accept_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "selective_accept": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "guard_select" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][rR]" + } + } + }, + "named": false, + "value": "or" + }, + { + "type": "SYMBOL", + "name": "guard_select" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" + } + } + }, + "named": false, + "value": "else" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + } + } + }, + "named": false, + "value": "select" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[;;]" + } + } + }, + "named": false, + "value": ";" + } + ] + }, + "abort_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][oO][rR][tT]" + } + } + }, + "named": false, + "value": "abort" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "name" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "requeue_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][qQ][uU][eE][uU][eE]" + } + } + }, + "named": false, + "value": "requeue" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][oO][rR][tT]" + } + } + }, + "named": false, + "value": "abort" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "accept_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][cC][cC][eE][pP][tT]" + } + } + }, + "named": false, + "value": "accept" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "entry_index", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "parameter_profile", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "formal_part" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][oO]" + } + } + }, + "named": false, + "value": "do" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "case_statement_alternative": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "SYMBOL", + "name": "discrete_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + } + ] + }, + "case_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][aA][sS][eE]" + } + } + }, + "named": false, + "value": "case" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "case_statement_alternative" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][aA][sS][eE]" + } + } + }, + "named": false, + "value": "case" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "block_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "loop_label" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][cC][lL][aA][rR][eE]" + } + } + }, + "named": false, + "value": "declare" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_declarative_part" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" + } + } + }, + "named": false, + "value": "begin" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "if_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][fF]" + } + } + }, + "named": false, + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + } + } + }, + "named": false, + "value": "then" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "elsif_statement_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" + } + } + }, + "named": false, + "value": "else" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][fF]" + } + } + }, + "named": false, + "value": "if" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "elsif_statement_item": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][iI][fF]" + } + } + }, + "named": false, + "value": "elsif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + } + } + }, + "named": false, + "value": "then" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + } + ] + }, + "exit_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][xX][iI][tT]" + } + } + }, + "named": false, + "value": "exit" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "goto_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[gG][oO][tT][oO]" + } + } + }, + "named": false, + "value": "goto" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "delay_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "delay_until_statement" + }, + { + "type": "SYMBOL", + "name": "delay_relative_statement" + } + ] + }, + "delay_until_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][aA][yY]" + } + } + }, + "named": false, + "value": "delay" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[uU][nN][tT][iI][lL]" + } + } + }, + "named": false, + "value": "until" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "delay_relative_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][eE][lL][aA][yY]" + } + } + }, + "named": false, + "value": "delay" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "simple_return_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][tT][uU][rR][nN]" + } + } + }, + "named": false, + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "extended_return_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][tT][uU][rR][nN]" + } + } + }, + "named": false, + "value": "return" + }, + { + "type": "SYMBOL", + "name": "extended_return_object_declaration" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[dD][oO]" + } + } + }, + "named": false, + "value": "do" + }, + { + "type": "SYMBOL", + "name": "handled_sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][eE][tT][uU][rR][nN]" + } + } + }, + "named": false, + "value": "return" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "extended_return_object_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][iI][aA][sS][eE][dD]" + } + } + }, + "named": false, + "value": "aliased" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][oO][nN][sS][tT][aA][nN][tT]" + } + } + }, + "named": false, + "value": "constant" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "return_subtype_indication" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "return_subtype_indication": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "SYMBOL", + "name": "access_definition" + } + ] + }, + "procedure_call_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "actual_parameter_part" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "raise_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[rR][aA][iI][sS][eE]" + } + } + }, + "named": false, + "value": "raise" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "with" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "loop_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "loop_label" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "iteration_scheme" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][oO][oO][pP]" + } + } + }, + "named": false, + "value": "loop" + }, + { + "type": "SYMBOL", + "name": "sequence_of_statements" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[lL][oO][oO][pP]" + } + } + }, + "named": false, + "value": "loop" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "iteration_scheme": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][iI][lL][eE]" + } + } + }, + "named": false, + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + } + } + }, + "named": false, + "value": "for" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "loop_parameter_specification" + }, + { + "type": "SYMBOL", + "name": "iterator_specification" + } + ] + } + ] + } + ] + }, + "assignment_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "assign_value" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "subprogram_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "subprogram_specification" + }, + { + "type": "FIELD", + "name": "is_abstract", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + } + } + }, + "named": false, + "value": "abstract" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "expression_function_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "overriding_indicator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function_specification" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aggregate" + }, + { + "type": "SYMBOL", + "name": "_parenthesized_expression" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "subprogram_specification": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "procedure_specification" + }, + { + "type": "SYMBOL", + "name": "function_specification" + } + ] + }, + "subtype_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[sS][uU][bB][tT][yY][pP][eE]" + } + } + }, + "named": false, + "value": "subtype" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "SYMBOL", + "name": "subtype_indication" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "variant_part": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][aA][sS][eE]" + } + } + }, + "named": false, + "value": "case" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[iI][sS]" + } + } + }, + "named": false, + "value": "is" + }, + { + "type": "SYMBOL", + "name": "variant_list" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[cC][aA][sS][eE]" + } + } + }, + "named": false, + "value": "case" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "variant_list": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "variant" + } + }, + "variant": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[wW][hH][eE][nN]" + } + } + }, + "named": false, + "value": "when" + }, + { + "type": "SYMBOL", + "name": "discrete_choice_list" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "component_list" + } + ] + } + }, + "extras": [ + { + "type": "PATTERN", + "value": "\\s|\\\\\\r?\\n" + }, + { + "type": "SYMBOL", + "name": "comment" + } + ], + "conflicts": [ + [ + "null_procedure_declaration", + "subprogram_specification" + ], + [ + "expression_function_declaration", + "subprogram_specification" + ], + [ + "at_clause", + "name" + ], + [ + "name", + "component_choice_list" + ], + [ + "record_component_association_list", + "positional_array_aggregate" + ], + [ + "value_sequence", + "array_component_association" + ], + [ + "generic_instantiation", + "procedure_specification" + ], + [ + "generic_package_declaration", + "_package_declaration" + ], + [ + "attribute_definition_clause", + "attribute_reference" + ], + [ + "defining_identifier_list", + "object_renaming_declaration", + "exception_renaming_declaration" + ], + [ + "defining_identifier_list", + "object_renaming_declaration" + ], + [ + "defining_identifier_list", + "object_renaming_declaration", + "loop_label", + "exception_renaming_declaration" + ], + [ + "defining_identifier_list", + "name" + ], + [ + "generic_formal_part", + "generic_renaming_declaration" + ], + [ + "derived_type_definition" + ], + [ + "iterator_specification", + "subtype_indication" + ], + [ + "full_type_declaration", + "discriminant_part" + ], + [ + "private_extension_declaration", + "derived_type_definition" + ], + [ + "name", + "subprogram_body" + ], + [ + "function_call", + "procedure_call_statement" + ], + [ + "function_call", + "name" + ], + [ + "formal_derived_type_definition" + ], + [ + "name", + "aspect_mark" + ], + [ + "name", + "attribute_reference", + "qualified_expression" + ], + [ + "name", + "package_body_stub" + ] + ], + "precedences": [], + "externals": [], + "inline": [], + "supertypes": [] +} + diff --git a/src/node-types.json b/src/node-types.json new file mode 100644 index 0000000..4d604ef --- /dev/null +++ b/src/node-types.json @@ -0,0 +1,6227 @@ +[ + { + "type": "abort_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "accept_statement", + "named": true, + "fields": { + "entry_index": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "parameter_profile": { + "multiple": false, + "required": false, + "types": [ + { + "type": "formal_part", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "handled_sequence_of_statements", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "access_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "non_empty_parameter_profile", + "named": true + }, + { + "type": "null_exclusion", + "named": true + }, + { + "type": "parameter_and_result_profile", + "named": true + } + ] + } + }, + { + "type": "access_to_object_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "general_access_modifier", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "access_to_subprogram_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "formal_part", + "named": true + }, + { + "type": "parameter_and_result_profile", + "named": true + } + ] + } + }, + { + "type": "access_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_to_object_definition", + "named": true + }, + { + "type": "access_to_subprogram_definition", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "actual_parameter_part", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "conditional_expression", + "named": true + }, + { + "type": "declare_expression", + "named": true + }, + { + "type": "parameter_association", + "named": true + }, + { + "type": "quantified_expression", + "named": true + } + ] + } + }, + { + "type": "aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_aggregate", + "named": true + }, + { + "type": "delta_aggregate", + "named": true + }, + { + "type": "extension_aggregate", + "named": true + }, + { + "type": "record_aggregate", + "named": true + } + ] + } + }, + { + "type": "allocator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "subpool_specification", + "named": true + }, + { + "type": "subtype_indication_paren_constraint", + "named": true + } + ] + } + }, + { + "type": "array_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "named_array_aggregate", + "named": true + }, + { + "type": "null_array_aggregate", + "named": true + }, + { + "type": "positional_array_aggregate", + "named": true + } + ] + } + }, + { + "type": "array_component_association", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_choice_list", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "iterated_element_association", + "named": true + } + ] + } + }, + { + "type": "array_delta_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array_component_association", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "array_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "constrained_array_definition", + "named": true + }, + { + "type": "unconstrained_array_definition", + "named": true + } + ] + } + }, + { + "type": "aspect_association", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_definition", + "named": true + }, + { + "type": "aspect_mark", + "named": true + } + ] + } + }, + { + "type": "aspect_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "at_clause", + "named": true + }, + { + "type": "attribute_definition_clause", + "named": true + }, + { + "type": "enumeration_representation_clause", + "named": true + }, + { + "type": "record_representation_clause", + "named": true + } + ] + } + }, + { + "type": "aspect_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "global_aspect_definition", + "named": true + } + ] + } + }, + { + "type": "aspect_mark", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "tick", + "named": true + } + ] + } + }, + { + "type": "aspect_mark_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_association", + "named": true + } + ] + } + }, + { + "type": "aspect_specification", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_mark_list", + "named": true + } + ] + } + }, + { + "type": "assign_value", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "assignment_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "assign_value", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "asynchronous_select", + "named": true, + "fields": { + "abortable_part": { + "multiple": false, + "required": true, + "types": [ + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "triggering_alternative", + "named": true + } + ] + } + }, + { + "type": "at_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "attribute_definition_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_designator", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "tick", + "named": true + } + ] + } + }, + { + "type": "attribute_designator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "attribute_reference", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_designator", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "reduction_attribute_reference", + "named": true + }, + { + "type": "tick", + "named": true + } + ] + } + }, + { + "type": "binary_adding_operator", + "named": true, + "fields": {} + }, + { + "type": "block_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "handled_sequence_of_statements", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "loop_label", + "named": true + }, + { + "type": "non_empty_declarative_part", + "named": true + } + ] + } + }, + { + "type": "body_stub", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "package_body_stub", + "named": true + }, + { + "type": "protected_body_stub", + "named": true + }, + { + "type": "subprogram_body_stub", + "named": true + }, + { + "type": "task_body_stub", + "named": true + } + ] + } + }, + { + "type": "case_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "case_expression_alternative", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "case_expression_alternative", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_choice_list", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "case_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "case_statement_alternative", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "case_statement_alternative", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_choice_list", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "choice_parameter_specification", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "chunk_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_subtype_definition", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "compilation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compilation_unit", + "named": true + } + ] + } + }, + { + "type": "compilation_unit", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "body_stub", + "named": true + }, + { + "type": "entry_declaration", + "named": true + }, + { + "type": "exception_declaration", + "named": true + }, + { + "type": "expression_function_declaration", + "named": true + }, + { + "type": "generic_declaration", + "named": true + }, + { + "type": "generic_instantiation", + "named": true + }, + { + "type": "null_procedure_declaration", + "named": true + }, + { + "type": "number_declaration", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "package_specification", + "named": true + }, + { + "type": "proper_body", + "named": true + }, + { + "type": "renaming_declaration", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "subprogram_declaration", + "named": true + }, + { + "type": "subtype_declaration", + "named": true + }, + { + "type": "subunit", + "named": true + }, + { + "type": "type_declaration", + "named": true + }, + { + "type": "use_clause", + "named": true + }, + { + "type": "with_clause", + "named": true + } + ] + } + }, + { + "type": "component_choice_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "component_clause", + "named": true, + "fields": { + "first_bit": { + "multiple": false, + "required": true, + "types": [ + { + "type": "simple_expression", + "named": true + } + ] + }, + "last_bit": { + "multiple": false, + "required": true, + "types": [ + { + "type": "simple_expression", + "named": true + } + ] + }, + "position": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "component_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "assign_value", + "named": true + }, + { + "type": "component_definition", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + } + ] + } + }, + { + "type": "component_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "component_item", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "component_declaration", + "named": true + } + ] + } + }, + { + "type": "component_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "component_item", + "named": true + }, + { + "type": "variant_part", + "named": true + } + ] + } + }, + { + "type": "compound_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "accept_statement", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "select_statement", + "named": true + } + ] + } + }, + { + "type": "conditional_entry_call", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "entry_call_alternative", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "conditional_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "case_expression", + "named": true + }, + { + "type": "if_expression", + "named": true + } + ] + } + }, + { + "type": "conditional_quantified_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "case_expression", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "quantified_expression", + "named": true + } + ] + } + }, + { + "type": "constrained_array_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "component_definition", + "named": true + }, + { + "type": "discrete_subtype_definition", + "named": true + } + ] + } + }, + { + "type": "constraint", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "index_constraint", + "named": true + }, + { + "type": "scalar_constraint", + "named": true + } + ] + } + }, + { + "type": "decimal_fixed_point_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "real_range_specification", + "named": true + } + ] + } + }, + { + "type": "declarative_item_pragma", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "body_stub", + "named": true + }, + { + "type": "exception_declaration", + "named": true + }, + { + "type": "expression_function_declaration", + "named": true + }, + { + "type": "generic_declaration", + "named": true + }, + { + "type": "generic_instantiation", + "named": true + }, + { + "type": "null_procedure_declaration", + "named": true + }, + { + "type": "number_declaration", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "package_specification", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "proper_body", + "named": true + }, + { + "type": "renaming_declaration", + "named": true + }, + { + "type": "subprogram_declaration", + "named": true + }, + { + "type": "subtype_declaration", + "named": true + }, + { + "type": "type_declaration", + "named": true + }, + { + "type": "use_clause", + "named": true + } + ] + } + }, + { + "type": "declare_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "declare_item", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "declare_item", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "object_declaration", + "named": true + }, + { + "type": "object_renaming_declaration", + "named": true + } + ] + } + }, + { + "type": "defining_identifier_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "delay_alternative", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "delay_statement", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "delay_relative_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "delay_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + } + ] + } + }, + { + "type": "delay_until_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "delta_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_delta_aggregate", + "named": true + }, + { + "type": "record_delta_aggregate", + "named": true + } + ] + } + }, + { + "type": "delta_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "range_constraint", + "named": true + }, + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "derived_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "interface_list", + "named": true + }, + { + "type": "record_extension_part", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "digits_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "range_constraint", + "named": true + }, + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "discrete_choice", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "range_g", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "discrete_choice_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_choice", + "named": true + } + ] + } + }, + { + "type": "discrete_range", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "range_g", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "discrete_subtype_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "range_g", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "discriminant_part", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "known_discriminant_part", + "named": true + }, + { + "type": "unknown_discriminant_part", + "named": true + } + ] + } + }, + { + "type": "discriminant_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "assign_value", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "discriminant_specification_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discriminant_specification", + "named": true + } + ] + } + }, + { + "type": "dispatching_operation_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "elsif_expression_item", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "elsif_statement_item", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "entry_barrier", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "entry_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "entry_barrier", + "named": true + }, + { + "type": "handled_sequence_of_statements", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "non_empty_declarative_part", + "named": true + }, + { + "type": "non_empty_entry_body_formal_part", + "named": true + } + ] + } + }, + { + "type": "entry_call_alternative", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "entry_declaration", + "named": true, + "fields": { + "parameter_profile": { + "multiple": false, + "required": false, + "types": [ + { + "type": "formal_part", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "discrete_subtype_definition", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + } + ] + } + }, + { + "type": "entry_index_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_subtype_definition", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "enumeration_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_aggregate", + "named": true + } + ] + } + }, + { + "type": "enumeration_representation_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "enumeration_aggregate", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "enumeration_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "character_literal", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "exception_choice", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "exception_choice_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "exception_choice", + "named": true + } + ] + } + }, + { + "type": "exception_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + } + ] + } + }, + { + "type": "exception_handler", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "choice_parameter_specification", + "named": true + }, + { + "type": "exception_choice_list", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "exception_handler_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "exception_handler", + "named": true + }, + { + "type": "pragma_g", + "named": true + } + ] + } + }, + { + "type": "exception_renaming_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "exit_statement", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "relation", + "named": true + } + ] + } + }, + { + "type": "expression_function_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aggregate", + "named": true + }, + { + "type": "aspect_specification", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "declare_expression", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "function_specification", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + }, + { + "type": "quantified_expression", + "named": true + } + ] + } + }, + { + "type": "extended_global_aspect_definition", + "named": true, + "fields": { + "formal_parameter_designator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "formal_group_designator", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "dispatching_operation_specifier", + "named": true + } + ] + } + }, + { + "type": "extended_return_object_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "assign_value", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "return_subtype_indication", + "named": true + } + ] + } + }, + { + "type": "extended_return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "extended_return_object_declaration", + "named": true + }, + { + "type": "handled_sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "extension_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "record_component_association_list", + "named": true + } + ] + } + }, + { + "type": "factor", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "primary", + "named": true + } + ] + } + }, + { + "type": "fixed_point_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "decimal_fixed_point_definition", + "named": true + }, + { + "type": "ordinary_fixed_point_definition", + "named": true + } + ] + } + }, + { + "type": "floating_point_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "real_range_specification", + "named": true + } + ] + } + }, + { + "type": "formal_abstract_subprogram_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "subprogram_default", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "formal_access_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_type_definition", + "named": true + } + ] + } + }, + { + "type": "formal_array_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_type_definition", + "named": true + } + ] + } + }, + { + "type": "formal_complete_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "discriminant_part", + "named": true + }, + { + "type": "formal_type_definition", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "formal_concrete_subprogram_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "subprogram_default", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "formal_decimal_fixed_point_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_derived_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "interface_list", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "formal_discrete_type_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_floating_point_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_group_designator", + "named": true, + "fields": {} + }, + { + "type": "formal_incomplete_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discriminant_part", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "formal_interface_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "interface_type_definition", + "named": true + } + ] + } + }, + { + "type": "formal_modular_type_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_object_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "aspect_specification", + "named": true + }, + { + "type": "assign_value", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "non_empty_mode", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "formal_ordinary_fixed_point_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_package_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "formal_part", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_specification_list", + "named": true + } + ] + } + }, + { + "type": "formal_private_type_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_signed_integer_type_definition", + "named": true, + "fields": {} + }, + { + "type": "formal_subprogram_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_abstract_subprogram_declaration", + "named": true + }, + { + "type": "formal_concrete_subprogram_declaration", + "named": true + } + ] + } + }, + { + "type": "formal_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_complete_type_declaration", + "named": true + }, + { + "type": "formal_incomplete_type_declaration", + "named": true + } + ] + } + }, + { + "type": "formal_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_access_type_definition", + "named": true + }, + { + "type": "formal_array_type_definition", + "named": true + }, + { + "type": "formal_decimal_fixed_point_definition", + "named": true + }, + { + "type": "formal_derived_type_definition", + "named": true + }, + { + "type": "formal_discrete_type_definition", + "named": true + }, + { + "type": "formal_floating_point_definition", + "named": true + }, + { + "type": "formal_interface_type_definition", + "named": true + }, + { + "type": "formal_modular_type_definition", + "named": true + }, + { + "type": "formal_ordinary_fixed_point_definition", + "named": true + }, + { + "type": "formal_private_type_definition", + "named": true + }, + { + "type": "formal_signed_integer_type_definition", + "named": true + } + ] + } + }, + { + "type": "full_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "known_discriminant_part", + "named": true + }, + { + "type": "protected_type_declaration", + "named": true + }, + { + "type": "task_type_declaration", + "named": true + }, + { + "type": "type_definition", + "named": true + } + ] + } + }, + { + "type": "function_call", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "actual_parameter_part", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "function_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "parameter_and_result_profile", + "named": true + } + ] + } + }, + { + "type": "general_access_modifier", + "named": true, + "fields": {} + }, + { + "type": "generic_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "generic_package_declaration", + "named": true + }, + { + "type": "generic_subprogram_declaration", + "named": true + } + ] + } + }, + { + "type": "generic_formal_parameter_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_object_declaration", + "named": true + }, + { + "type": "formal_package_declaration", + "named": true + }, + { + "type": "formal_subprogram_declaration", + "named": true + }, + { + "type": "formal_type_declaration", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "use_clause", + "named": true + } + ] + } + }, + { + "type": "generic_formal_part", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "generic_formal_parameter_declaration", + "named": true + } + ] + } + }, + { + "type": "generic_instantiation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + } + ] + } + }, + { + "type": "generic_package_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "generic_formal_part", + "named": true + }, + { + "type": "package_specification", + "named": true + } + ] + } + }, + { + "type": "generic_renaming_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "generic_subprogram_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "generic_formal_part", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "global_aspect_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "extended_global_aspect_definition", + "named": true + }, + { + "type": "global_aspect_element", + "named": true + }, + { + "type": "global_mode", + "named": true + } + ] + } + }, + { + "type": "global_aspect_element", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "extended_global_aspect_definition", + "named": true + }, + { + "type": "global_mode", + "named": true + }, + { + "type": "global_set", + "named": true + } + ] + } + }, + { + "type": "global_mode", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "non_empty_mode", + "named": true + } + ] + } + }, + { + "type": "global_set", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "goto_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "guard", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "guard_select", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "guard", + "named": true + }, + { + "type": "select_alternative", + "named": true + } + ] + } + }, + { + "type": "handled_sequence_of_statements", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "exception_handler_list", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "if_expression", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "elsif_expression_item", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "elsif_statement_item", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "incomplete_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discriminant_part", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "index_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_range", + "named": true + } + ] + } + }, + { + "type": "index_subtype_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "integer_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "modular_type_definition", + "named": true + }, + { + "type": "signed_integer_type_definition", + "named": true + } + ] + } + }, + { + "type": "interface_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "interface_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "interface_list", + "named": true + } + ] + } + }, + { + "type": "iterated_element_association", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "iterator_specification", + "named": true + }, + { + "type": "loop_parameter_specification", + "named": true + } + ] + } + }, + { + "type": "iteration_scheme", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "iterator_specification", + "named": true + }, + { + "type": "loop_parameter_specification", + "named": true + } + ] + } + }, + { + "type": "iterator_filter", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "iterator_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "iterator_filter", + "named": true + }, + { + "type": "loop_parameter_subtype_indication", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "known_discriminant_part", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "discriminant_specification_list", + "named": true + } + ] + } + }, + { + "type": "label", + "named": true, + "fields": { + "statement_identifier": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "loop_label", + "named": true, + "fields": { + "statement_identifier": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "loop_parameter_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discrete_subtype_definition", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "iterator_filter", + "named": true + } + ] + } + }, + { + "type": "loop_parameter_subtype_indication", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "loop_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "iteration_scheme", + "named": true + }, + { + "type": "loop_label", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "membership_choice", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "range_g", + "named": true + }, + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "membership_choice_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "membership_choice", + "named": true + } + ] + } + }, + { + "type": "mod_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "modular_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "multiplying_operator", + "named": true, + "fields": {} + }, + { + "type": "name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "qualified_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "name_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "named_array_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array_component_association", + "named": true + } + ] + } + }, + { + "type": "non_empty_declarative_part", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "declarative_item_pragma", + "named": true + } + ] + } + }, + { + "type": "non_empty_entry_body_formal_part", + "named": true, + "fields": { + "parameter_profile": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_part", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "entry_index_specification", + "named": true + } + ] + } + }, + { + "type": "non_empty_mode", + "named": true, + "fields": {} + }, + { + "type": "non_empty_parameter_profile", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_part", + "named": true + } + ] + } + }, + { + "type": "null_array_aggregate", + "named": true, + "fields": {} + }, + { + "type": "null_exclusion", + "named": true, + "fields": {} + }, + { + "type": "null_procedure_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + }, + { + "type": "procedure_specification", + "named": true + } + ] + } + }, + { + "type": "null_statement", + "named": true, + "fields": {} + }, + { + "type": "number_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "assign_value", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + } + ] + } + }, + { + "type": "object_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "array_type_definition", + "named": true + }, + { + "type": "aspect_specification", + "named": true + }, + { + "type": "assign_value", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + }, + { + "type": "single_protected_declaration", + "named": true + }, + { + "type": "single_task_declaration", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "object_renaming_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "ordinary_fixed_point_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "real_range_specification", + "named": true + } + ] + } + }, + { + "type": "overriding_indicator", + "named": true, + "fields": {} + }, + { + "type": "package_body", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "handled_sequence_of_statements", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "non_empty_declarative_part", + "named": true + } + ] + } + }, + { + "type": "package_body_stub", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "package_renaming_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "package_specification", + "named": true, + "fields": { + "endname": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "aspect_specification", + "named": true + }, + { + "type": "exception_declaration", + "named": true + }, + { + "type": "expression_function_declaration", + "named": true + }, + { + "type": "generic_declaration", + "named": true + }, + { + "type": "generic_instantiation", + "named": true + }, + { + "type": "null_procedure_declaration", + "named": true + }, + { + "type": "number_declaration", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "package_specification", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "renaming_declaration", + "named": true + }, + { + "type": "subprogram_declaration", + "named": true + }, + { + "type": "subtype_declaration", + "named": true + }, + { + "type": "type_declaration", + "named": true + }, + { + "type": "use_clause", + "named": true + } + ] + } + }, + { + "type": "parameter_and_result_profile", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "formal_part", + "named": true + }, + { + "type": "result_profile", + "named": true + } + ] + } + }, + { + "type": "parameter_association", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "component_choice_list", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "parameter_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "assign_value", + "named": true + }, + { + "type": "defining_identifier_list", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "non_empty_mode", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "parameter_specification_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "parameter_specification", + "named": true + } + ] + } + }, + { + "type": "positional_array_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "pragma_argument_association", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_mark", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "pragma_g", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "conditional_quantified_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "pragma_argument_association", + "named": true + } + ] + } + }, + { + "type": "primary", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "aggregate", + "named": true + }, + { + "type": "allocator", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "declare_expression", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "numeric_literal", + "named": true + }, + { + "type": "quantified_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "private_extension_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "discriminant_part", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "interface_list", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "private_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "discriminant_part", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "procedure_call_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "actual_parameter_part", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "procedure_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "non_empty_parameter_profile", + "named": true + } + ] + } + }, + { + "type": "proper_body", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "package_body", + "named": true + }, + { + "type": "protected_body", + "named": true + }, + { + "type": "subprogram_body", + "named": true + }, + { + "type": "task_body", + "named": true + } + ] + } + }, + { + "type": "protected_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "protected_operation_item", + "named": true + } + ] + } + }, + { + "type": "protected_body_stub", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "protected_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "protected_element_declaration", + "named": true + }, + { + "type": "protected_operation_declaration", + "named": true + } + ] + } + }, + { + "type": "protected_element_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "component_declaration", + "named": true + }, + { + "type": "protected_operation_declaration", + "named": true + } + ] + } + }, + { + "type": "protected_operation_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "entry_declaration", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "subprogram_declaration", + "named": true + } + ] + } + }, + { + "type": "protected_operation_item", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "entry_body", + "named": true + }, + { + "type": "expression_function_declaration", + "named": true + }, + { + "type": "null_procedure_declaration", + "named": true + }, + { + "type": "subprogram_body", + "named": true + }, + { + "type": "subprogram_declaration", + "named": true + } + ] + } + }, + { + "type": "protected_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "interface_list", + "named": true + }, + { + "type": "known_discriminant_part", + "named": true + }, + { + "type": "protected_definition", + "named": true + } + ] + } + }, + { + "type": "qualified_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aggregate", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "tick", + "named": true + } + ] + } + }, + { + "type": "quantified_expression", + "named": true, + "fields": { + "predicate": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "iterator_specification", + "named": true + }, + { + "type": "loop_parameter_specification", + "named": true + }, + { + "type": "quantifier", + "named": true + } + ] + } + }, + { + "type": "quantifier", + "named": true, + "fields": {} + }, + { + "type": "raise_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "raise_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "range_attribute_designator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "range_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "range_g", + "named": true + } + ] + } + }, + { + "type": "range_g", + "named": true, + "fields": { + "range_attribute_reference": { + "multiple": true, + "required": false, + "types": [ + { + "type": "name", + "named": true + }, + { + "type": "range_attribute_designator", + "named": true + }, + { + "type": "tick", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "real_range_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "real_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "fixed_point_definition", + "named": true + }, + { + "type": "floating_point_definition", + "named": true + } + ] + } + }, + { + "type": "record_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "record_component_association_list", + "named": true + } + ] + } + }, + { + "type": "record_component_association_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "component_choice_list", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "record_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "component_list", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "record_delta_aggregate", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "record_component_association_list", + "named": true + } + ] + } + }, + { + "type": "record_extension_part", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "record_definition", + "named": true + } + ] + } + }, + { + "type": "record_representation_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "component_clause", + "named": true + }, + { + "type": "mod_clause", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "record_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "record_definition", + "named": true + } + ] + } + }, + { + "type": "reduction_attribute_designator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "reduction_specification", + "named": true + } + ] + } + }, + { + "type": "reduction_attribute_reference", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "reduction_attribute_designator", + "named": true + }, + { + "type": "tick", + "named": true + }, + { + "type": "value_sequence", + "named": true + } + ] + } + }, + { + "type": "reduction_specification", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "relation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "membership_choice_list", + "named": true + }, + { + "type": "raise_expression", + "named": true + }, + { + "type": "relational_operator", + "named": true + }, + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "relational_operator", + "named": true, + "fields": {} + }, + { + "type": "renaming_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "exception_renaming_declaration", + "named": true + }, + { + "type": "generic_renaming_declaration", + "named": true + }, + { + "type": "object_renaming_declaration", + "named": true + }, + { + "type": "package_renaming_declaration", + "named": true + }, + { + "type": "subprogram_renaming_declaration", + "named": true + } + ] + } + }, + { + "type": "requeue_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "result_profile", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "return_subtype_indication", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "scalar_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "delta_constraint", + "named": true + }, + { + "type": "digits_constraint", + "named": true + }, + { + "type": "range_constraint", + "named": true + } + ] + } + }, + { + "type": "select_alternative", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "accept_statement", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "select_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "timed_entry_call", + "named": true + } + ] + } + }, + { + "type": "selective_accept", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "guard_select", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "sequence_of_statements", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "label", + "named": true + }, + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "signed_integer_type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "simple_expression", + "named": true + } + ] + } + }, + { + "type": "simple_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "binary_adding_operator", + "named": true + }, + { + "type": "term", + "named": true + }, + { + "type": "unary_adding_operator", + "named": true + } + ] + } + }, + { + "type": "simple_return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "simple_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "delay_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + } + ] + } + }, + { + "type": "single_protected_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "interface_list", + "named": true + }, + { + "type": "protected_definition", + "named": true + } + ] + } + }, + { + "type": "single_task_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "interface_list", + "named": true + }, + { + "type": "task_definition", + "named": true + } + ] + } + }, + { + "type": "statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "simple_statement", + "named": true + } + ] + } + }, + { + "type": "subpool_specification", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + { + "type": "subprogram_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "handled_sequence_of_statements", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "non_empty_declarative_part", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "subprogram_body_stub", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "subprogram_declaration", + "named": true, + "fields": { + "is_abstract": { + "multiple": true, + "required": false, + "types": [ + { + "type": "abstract", + "named": false + }, + { + "type": "is", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "subprogram_default", + "named": true, + "fields": { + "default_name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + } + } + }, + { + "type": "subprogram_renaming_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "overriding_indicator", + "named": true + }, + { + "type": "subprogram_specification", + "named": true + } + ] + } + }, + { + "type": "subprogram_specification", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "function_specification", + "named": true + }, + { + "type": "procedure_specification", + "named": true + } + ] + } + }, + { + "type": "subtype_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "subtype_indication", + "named": true + } + ] + } + }, + { + "type": "subtype_indication", + "named": true, + "fields": { + "subtype_mark": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "constraint", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "subtype_indication_paren_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "index_constraint", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "null_exclusion", + "named": true + } + ] + } + }, + { + "type": "subunit", + "named": true, + "fields": { + "parent_unit_name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "proper_body", + "named": true + } + ] + } + }, + { + "type": "task_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "handled_sequence_of_statements", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "non_empty_declarative_part", + "named": true + } + ] + } + }, + { + "type": "task_body_stub", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "task_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "task_item", + "named": true + } + ] + } + }, + { + "type": "task_item", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "aspect_clause", + "named": true + }, + { + "type": "entry_declaration", + "named": true + } + ] + } + }, + { + "type": "task_type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "aspect_specification", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "interface_list", + "named": true + }, + { + "type": "known_discriminant_part", + "named": true + }, + { + "type": "task_definition", + "named": true + } + ] + } + }, + { + "type": "term", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "factor", + "named": true + }, + { + "type": "multiplying_operator", + "named": true + } + ] + } + }, + { + "type": "tick", + "named": true, + "fields": {} + }, + { + "type": "timed_entry_call", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "delay_alternative", + "named": true + }, + { + "type": "entry_call_alternative", + "named": true + } + ] + } + }, + { + "type": "triggering_alternative", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "delay_statement", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "sequence_of_statements", + "named": true + } + ] + } + }, + { + "type": "type_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "full_type_declaration", + "named": true + }, + { + "type": "incomplete_type_declaration", + "named": true + }, + { + "type": "private_extension_declaration", + "named": true + }, + { + "type": "private_type_declaration", + "named": true + } + ] + } + }, + { + "type": "type_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_type_definition", + "named": true + }, + { + "type": "array_type_definition", + "named": true + }, + { + "type": "derived_type_definition", + "named": true + }, + { + "type": "enumeration_type_definition", + "named": true + }, + { + "type": "integer_type_definition", + "named": true + }, + { + "type": "interface_type_definition", + "named": true + }, + { + "type": "real_type_definition", + "named": true + }, + { + "type": "record_type_definition", + "named": true + } + ] + } + }, + { + "type": "unary_adding_operator", + "named": true, + "fields": {} + }, + { + "type": "unconstrained_array_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "component_definition", + "named": true + }, + { + "type": "index_subtype_definition", + "named": true + } + ] + } + }, + { + "type": "unknown_discriminant_part", + "named": true, + "fields": {} + }, + { + "type": "use_clause", + "named": true, + "fields": { + "is_all": { + "multiple": false, + "required": false, + "types": [ + { + "type": "all", + "named": false + } + ] + }, + "is_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": false + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name_list", + "named": true + } + ] + } + }, + { + "type": "value_sequence", + "named": true, + "fields": { + "is_parallel": { + "multiple": false, + "required": false, + "types": [ + { + "type": "parallel", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "chunk_specification", + "named": true + }, + { + "type": "iterated_element_association", + "named": true + } + ] + } + }, + { + "type": "variant", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "component_list", + "named": true + }, + { + "type": "discrete_choice_list", + "named": true + } + ] + } + }, + { + "type": "variant_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variant", + "named": true + } + ] + } + }, + { + "type": "variant_part", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "variant_list", + "named": true + } + ] + } + }, + { + "type": "with_clause", + "named": true, + "fields": { + "is_limited": { + "multiple": false, + "required": false, + "types": [ + { + "type": "limited", + "named": false + } + ] + }, + "is_private": { + "multiple": false, + "required": false, + "types": [ + { + "type": "private", + "named": false + } + ] + }, + "names": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name_list", + "named": true + } + ] + } + } + }, + { + "type": "&", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": ":=", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "abort", + "named": false + }, + { + "type": "abs", + "named": false + }, + { + "type": "abstract", + "named": false + }, + { + "type": "accept", + "named": false + }, + { + "type": "access", + "named": false + }, + { + "type": "aliased", + "named": false + }, + { + "type": "all", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "array", + "named": false + }, + { + "type": "at", + "named": false + }, + { + "type": "begin", + "named": false + }, + { + "type": "body", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "constant", + "named": false + }, + { + "type": "declare", + "named": false + }, + { + "type": "delay", + "named": false + }, + { + "type": "delta", + "named": false + }, + { + "type": "digits", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "elsif", + "named": false + }, + { + "type": "end", + "named": false + }, + { + "type": "entry", + "named": false + }, + { + "type": "exception", + "named": false + }, + { + "type": "exit", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "function", + "named": false + }, + { + "type": "generic", + "named": false + }, + { + "type": "goto", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "interface", + "named": false + }, + { + "type": "is", + "named": false + }, + { + "type": "limited", + "named": false + }, + { + "type": "loop", + "named": false + }, + { + "type": "mod", + "named": false + }, + { + "type": "new", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "null", + "named": false + }, + { + "type": "numeric_literal", + "named": true + }, + { + "type": "of", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "others", + "named": false + }, + { + "type": "out", + "named": false + }, + { + "type": "overriding", + "named": false + }, + { + "type": "package", + "named": false + }, + { + "type": "parallel", + "named": false + }, + { + "type": "pragma", + "named": false + }, + { + "type": "private", + "named": false + }, + { + "type": "procedure", + "named": false + }, + { + "type": "protected", + "named": false + }, + { + "type": "raise", + "named": false + }, + { + "type": "range", + "named": false + }, + { + "type": "record", + "named": false + }, + { + "type": "rem", + "named": false + }, + { + "type": "renames", + "named": false + }, + { + "type": "requeue", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "reverse", + "named": false + }, + { + "type": "select", + "named": false + }, + { + "type": "separate", + "named": false + }, + { + "type": "some", + "named": false + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subtype", + "named": false + }, + { + "type": "synchronized", + "named": false + }, + { + "type": "tagged", + "named": false + }, + { + "type": "task", + "named": false + }, + { + "type": "then", + "named": false + }, + { + "type": "type", + "named": false + }, + { + "type": "until", + "named": false + }, + { + "type": "use", + "named": false + }, + { + "type": "when", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "with", + "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "|", + "named": false + } +] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c new file mode 100644 index 0000000..63a2f5c --- /dev/null +++ b/src/parser.c @@ -0,0 +1,60003 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1887 +#define LARGE_STATE_COUNT 56 +#define SYMBOL_COUNT 439 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 112 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 23 +#define MAX_ALIAS_SEQUENCE_LENGTH 14 +#define PRODUCTION_ID_COUNT 38 + +enum { + sym_identifier = 1, + sym_comment = 2, + sym_string_literal = 3, + sym_character_literal = 4, + sym_numeric_literal = 5, + anon_sym_EQ = 6, + anon_sym_SLASH_EQ = 7, + anon_sym_LT = 8, + anon_sym_LT_EQ = 9, + anon_sym_GT = 10, + anon_sym_GT_EQ = 11, + anon_sym_PLUS = 12, + anon_sym_DASH = 13, + anon_sym_AMP = 14, + anon_sym_STAR = 15, + anon_sym_SLASH = 16, + anon_sym_mod = 17, + anon_sym_rem = 18, + anon_sym_SQUOTE = 19, + anon_sym_DOT = 20, + anon_sym_AT = 21, + anon_sym_COMMA = 22, + anon_sym_LPAREN = 23, + anon_sym_RPAREN = 24, + anon_sym_LBRACK = 25, + aux_sym_value_sequence_token1 = 26, + anon_sym_RBRACK = 27, + aux_sym_chunk_specification_token1 = 28, + aux_sym_iterated_element_association_token1 = 29, + aux_sym_iterated_element_association_token2 = 30, + anon_sym_EQ_GT = 31, + aux_sym_loop_parameter_specification_token1 = 32, + aux_sym_iterator_filter_token1 = 33, + anon_sym_COLON = 34, + aux_sym_iterator_specification_token1 = 35, + aux_sym_attribute_designator_token1 = 36, + aux_sym_attribute_designator_token2 = 37, + aux_sym_attribute_designator_token3 = 38, + aux_sym_attribute_designator_token4 = 39, + aux_sym_compilation_unit_token1 = 40, + anon_sym_SEMI = 41, + aux_sym_package_specification_token1 = 42, + aux_sym_package_specification_token2 = 43, + aux_sym_package_specification_token3 = 44, + aux_sym_with_clause_token1 = 45, + aux_sym_with_clause_token2 = 46, + aux_sym_use_clause_token1 = 47, + aux_sym_use_clause_token2 = 48, + aux_sym_subunit_token1 = 49, + aux_sym_subprogram_body_token1 = 50, + aux_sym_package_body_token1 = 51, + anon_sym_DOT_DOT = 52, + aux_sym_range_attribute_designator_token1 = 53, + aux_sym_expression_token1 = 54, + aux_sym_expression_token2 = 55, + aux_sym_expression_token3 = 56, + aux_sym_expression_token4 = 57, + aux_sym_expression_token5 = 58, + aux_sym_relation_token1 = 59, + aux_sym_raise_expression_token1 = 60, + anon_sym_PIPE = 61, + anon_sym_STAR_STAR = 62, + aux_sym_factor_token1 = 63, + aux_sym_primary_token1 = 64, + aux_sym_allocator_token1 = 65, + aux_sym_access_type_definition_token1 = 66, + aux_sym_general_access_modifier_token1 = 67, + aux_sym_access_to_subprogram_definition_token1 = 68, + aux_sym_access_to_subprogram_definition_token2 = 69, + anon_sym_LT_GT = 70, + aux_sym_declare_expression_token1 = 71, + aux_sym_quantifier_token1 = 72, + aux_sym_case_expression_token1 = 73, + aux_sym_record_component_association_list_token1 = 74, + aux_sym_private_type_declaration_token1 = 75, + aux_sym_private_type_declaration_token2 = 76, + aux_sym_private_extension_declaration_token1 = 77, + aux_sym_unconstrained_array_definition_token1 = 78, + aux_sym_interface_type_definition_token1 = 79, + aux_sym_interface_type_definition_token2 = 80, + aux_sym_component_list_token1 = 81, + aux_sym_component_definition_token1 = 82, + aux_sym_positional_array_aggregate_token1 = 83, + anon_sym_COLON_EQ = 84, + aux_sym_at_clause_token1 = 85, + aux_sym_entry_declaration_token1 = 86, + aux_sym_exception_declaration_token1 = 87, + aux_sym_generic_formal_part_token1 = 88, + anon_sym_null = 89, + anon_sym_all = 90, + aux_sym_extended_global_aspect_definition_token1 = 91, + aux_sym_global_mode_token1 = 92, + anon_sym_LT_LT = 93, + anon_sym_GT_GT = 94, + aux_sym_non_empty_mode_token1 = 95, + aux_sym_pragma_g_token1 = 96, + aux_sym_if_expression_token1 = 97, + aux_sym_elsif_expression_item_token1 = 98, + aux_sym_object_renaming_declaration_token1 = 99, + aux_sym_result_profile_token1 = 100, + aux_sym_asynchronous_select_token1 = 101, + aux_sym_asynchronous_select_token2 = 102, + aux_sym_requeue_statement_token1 = 103, + aux_sym_accept_statement_token1 = 104, + aux_sym_exit_statement_token1 = 105, + aux_sym_goto_statement_token1 = 106, + aux_sym_delay_until_statement_token1 = 107, + aux_sym_delay_until_statement_token2 = 108, + aux_sym_loop_statement_token1 = 109, + aux_sym_iteration_scheme_token1 = 110, + aux_sym_subtype_declaration_token1 = 111, + sym_compilation = 112, + sym_relational_operator = 113, + sym_binary_adding_operator = 114, + sym_unary_adding_operator = 115, + sym_multiplying_operator = 116, + sym_tick = 117, + sym_name = 118, + sym_name_list = 119, + sym_defining_identifier_list = 120, + sym_attribute_reference = 121, + sym_reduction_attribute_reference = 122, + sym_reduction_attribute_designator = 123, + sym_reduction_specification = 124, + sym_value_sequence = 125, + sym_chunk_specification = 126, + sym_iterated_element_association = 127, + sym_discrete_subtype_definition = 128, + sym_loop_parameter_specification = 129, + sym_loop_parameter_subtype_indication = 130, + sym_iterator_filter = 131, + sym_iterator_specification = 132, + sym_attribute_designator = 133, + sym_function_call = 134, + sym_qualified_expression = 135, + sym_compilation_unit = 136, + sym__declarative_item = 137, + sym__basic_declarative_item = 138, + sym__basic_declaration = 139, + sym__package_declaration = 140, + sym_package_specification = 141, + sym_with_clause = 142, + sym_use_clause = 143, + sym_subunit = 144, + sym_proper_body = 145, + sym_subprogram_body = 146, + sym_package_body = 147, + sym_subtype_indication = 148, + sym_constraint = 149, + sym_scalar_constraint = 150, + sym_range_g = 151, + sym_range_attribute_designator = 152, + sym_range_constraint = 153, + sym_expression = 154, + sym_relation = 155, + sym_raise_expression = 156, + sym_membership_choice_list = 157, + sym_membership_choice = 158, + sym_simple_expression = 159, + sym_term = 160, + sym_factor = 161, + sym__parenthesized_expression = 162, + sym_primary = 163, + sym_allocator = 164, + sym_subtype_indication_paren_constraint = 165, + sym_subpool_specification = 166, + sym_access_type_definition = 167, + sym_access_to_object_definition = 168, + sym_general_access_modifier = 169, + sym_access_to_subprogram_definition = 170, + sym_access_definition = 171, + sym_actual_parameter_part = 172, + sym_parameter_association = 173, + sym_conditional_expression = 174, + sym_conditional_quantified_expression = 175, + sym_quantified_expression = 176, + sym_declare_expression = 177, + sym_declare_item = 178, + sym_quantifier = 179, + sym_case_expression = 180, + sym_case_expression_alternative = 181, + sym_component_choice_list = 182, + sym_aggregate = 183, + sym_delta_aggregate = 184, + sym_extension_aggregate = 185, + sym_record_delta_aggregate = 186, + sym_array_delta_aggregate = 187, + sym_record_aggregate = 188, + sym_record_component_association_list = 189, + sym__named_record_component_association = 190, + sym_null_exclusion = 191, + sym_index_constraint = 192, + sym_digits_constraint = 193, + sym_delta_constraint = 194, + sym__basic_declarative_item_pragma = 195, + sym_type_declaration = 196, + sym_full_type_declaration = 197, + sym_private_type_declaration = 198, + sym_private_extension_declaration = 199, + sym_discriminant_part = 200, + sym_unknown_discriminant_part = 201, + sym_known_discriminant_part = 202, + sym_incomplete_type_declaration = 203, + sym_discriminant_specification_list = 204, + sym_discriminant_specification = 205, + sym_type_definition = 206, + sym_array_type_definition = 207, + sym_unconstrained_array_definition = 208, + sym_constrained_array_definition = 209, + sym__discrete_subtype_definition_list = 210, + sym_discrete_range = 211, + sym__index_subtype_definition_list = 212, + sym_index_subtype_definition = 213, + sym_enumeration_type_definition = 214, + sym__enumeration_literal_list = 215, + sym__enumeration_literal_specification = 216, + sym_integer_type_definition = 217, + sym_modular_type_definition = 218, + sym_real_type_definition = 219, + sym_floating_point_definition = 220, + sym_real_range_specification = 221, + sym_fixed_point_definition = 222, + sym_decimal_fixed_point_definition = 223, + sym_ordinary_fixed_point_definition = 224, + sym_signed_integer_type_definition = 225, + sym_derived_type_definition = 226, + sym_interface_type_definition = 227, + sym_interface_list = 228, + sym_record_extension_part = 229, + sym_record_type_definition = 230, + sym_record_definition = 231, + sym_component_list = 232, + sym_component_item = 233, + sym_component_declaration = 234, + sym_component_definition = 235, + sym_array_aggregate = 236, + sym_positional_array_aggregate = 237, + sym_null_array_aggregate = 238, + sym_named_array_aggregate = 239, + sym__array_component_association_list = 240, + sym_array_component_association = 241, + sym_discrete_choice_list = 242, + sym_discrete_choice = 243, + sym_aspect_association = 244, + sym_aspect_clause = 245, + sym_aspect_definition = 246, + sym_aspect_mark = 247, + sym_aspect_mark_list = 248, + sym_aspect_specification = 249, + sym_assign_value = 250, + sym_at_clause = 251, + sym_attribute_definition_clause = 252, + sym_body_stub = 253, + sym_subprogram_body_stub = 254, + sym_package_body_stub = 255, + sym_task_body = 256, + sym_task_body_stub = 257, + sym_protected_operation_declaration = 258, + sym_protected_element_declaration = 259, + sym_protected_operation_item = 260, + sym_protected_definition = 261, + sym_protected_type_declaration = 262, + sym_single_protected_declaration = 263, + sym_protected_body = 264, + sym_protected_body_stub = 265, + sym_choice_parameter_specification = 266, + sym_component_clause = 267, + sym_declarative_item_pragma = 268, + sym_non_empty_declarative_part = 269, + sym_entry_declaration = 270, + sym_entry_body = 271, + sym_entry_barrier = 272, + sym_entry_index_specification = 273, + sym_enumeration_aggregate = 274, + sym_enumeration_representation_clause = 275, + sym_exception_choice_list = 276, + sym_exception_choice = 277, + sym_exception_declaration = 278, + sym_exception_handler = 279, + sym_exception_handler_list = 280, + sym_formal_part = 281, + sym_function_specification = 282, + sym_generic_declaration = 283, + sym_generic_formal_part = 284, + sym_generic_formal_parameter_declaration = 285, + sym_generic_subprogram_declaration = 286, + sym_generic_package_declaration = 287, + sym_generic_instantiation = 288, + sym_formal_object_declaration = 289, + sym_formal_type_declaration = 290, + sym_formal_complete_type_declaration = 291, + sym_formal_incomplete_type_declaration = 292, + sym_formal_type_definition = 293, + sym_formal_private_type_definition = 294, + sym_formal_derived_type_definition = 295, + sym_formal_discrete_type_definition = 296, + sym_formal_signed_integer_type_definition = 297, + sym_formal_modular_type_definition = 298, + sym_formal_floating_point_definition = 299, + sym_formal_ordinary_fixed_point_definition = 300, + sym_formal_decimal_fixed_point_definition = 301, + sym_formal_array_type_definition = 302, + sym_formal_access_type_definition = 303, + sym_formal_interface_type_definition = 304, + sym_formal_subprogram_declaration = 305, + sym_formal_concrete_subprogram_declaration = 306, + sym_formal_abstract_subprogram_declaration = 307, + sym_subprogram_default = 308, + sym_formal_package_declaration = 309, + sym_formal_group_designator = 310, + sym_extended_global_aspect_definition = 311, + sym_dispatching_operation_specifier = 312, + sym_global_aspect_definition = 313, + sym_global_aspect_element = 314, + sym_global_mode = 315, + sym_global_set = 316, + sym_handled_sequence_of_statements = 317, + sym_loop_label = 318, + sym_label = 319, + sym_mod_clause = 320, + sym_non_empty_mode = 321, + sym_null_procedure_declaration = 322, + sym_null_statement = 323, + sym_number_declaration = 324, + sym_object_declaration = 325, + sym_single_task_declaration = 326, + sym_task_type_declaration = 327, + sym_non_empty_entry_body_formal_part = 328, + sym_task_item = 329, + sym_task_definition = 330, + sym_overriding_indicator = 331, + sym_non_empty_parameter_profile = 332, + sym_parameter_and_result_profile = 333, + sym_parameter_specification = 334, + sym_parameter_specification_list = 335, + sym_pragma_g = 336, + sym_pragma_argument_association = 337, + sym_if_expression = 338, + sym_elsif_expression_item = 339, + sym_procedure_specification = 340, + sym_record_representation_clause = 341, + sym_renaming_declaration = 342, + sym_object_renaming_declaration = 343, + sym_exception_renaming_declaration = 344, + sym_package_renaming_declaration = 345, + sym_subprogram_renaming_declaration = 346, + sym_generic_renaming_declaration = 347, + sym_result_profile = 348, + sym_sequence_of_statements = 349, + sym_simple_statement = 350, + sym_statement = 351, + sym_compound_statement = 352, + sym_select_statement = 353, + sym_entry_call_alternative = 354, + sym_asynchronous_select = 355, + sym_triggering_alternative = 356, + sym_conditional_entry_call = 357, + sym_delay_alternative = 358, + sym_timed_entry_call = 359, + sym_guard = 360, + sym_guard_select = 361, + sym_select_alternative = 362, + sym_selective_accept = 363, + sym_abort_statement = 364, + sym_requeue_statement = 365, + sym_accept_statement = 366, + sym_case_statement_alternative = 367, + sym_case_statement = 368, + sym_block_statement = 369, + sym_if_statement = 370, + sym_elsif_statement_item = 371, + sym_exit_statement = 372, + sym_goto_statement = 373, + sym_delay_statement = 374, + sym_delay_until_statement = 375, + sym_delay_relative_statement = 376, + sym_simple_return_statement = 377, + sym_extended_return_statement = 378, + sym_extended_return_object_declaration = 379, + sym_return_subtype_indication = 380, + sym_procedure_call_statement = 381, + sym_raise_statement = 382, + sym_loop_statement = 383, + sym_iteration_scheme = 384, + sym_assignment_statement = 385, + sym_subprogram_declaration = 386, + sym_expression_function_declaration = 387, + sym_subprogram_specification = 388, + sym_subtype_declaration = 389, + sym_variant_part = 390, + sym_variant_list = 391, + sym_variant = 392, + aux_sym_compilation_repeat1 = 393, + aux_sym_name_list_repeat1 = 394, + aux_sym_defining_identifier_list_repeat1 = 395, + aux_sym_package_specification_repeat1 = 396, + aux_sym_expression_repeat1 = 397, + aux_sym_expression_repeat2 = 398, + aux_sym_expression_repeat3 = 399, + aux_sym_membership_choice_list_repeat1 = 400, + aux_sym_simple_expression_repeat1 = 401, + aux_sym_term_repeat1 = 402, + aux_sym_actual_parameter_part_repeat1 = 403, + aux_sym_declare_expression_repeat1 = 404, + aux_sym_case_expression_repeat1 = 405, + aux_sym_component_choice_list_repeat1 = 406, + aux_sym_record_component_association_list_repeat1 = 407, + aux_sym_record_component_association_list_repeat2 = 408, + aux_sym_index_constraint_repeat1 = 409, + aux_sym_discriminant_specification_list_repeat1 = 410, + aux_sym__discrete_subtype_definition_list_repeat1 = 411, + aux_sym__index_subtype_definition_list_repeat1 = 412, + aux_sym__enumeration_literal_list_repeat1 = 413, + aux_sym_interface_list_repeat1 = 414, + aux_sym_component_list_repeat1 = 415, + aux_sym_positional_array_aggregate_repeat1 = 416, + aux_sym__array_component_association_list_repeat1 = 417, + aux_sym_discrete_choice_list_repeat1 = 418, + aux_sym_aspect_mark_list_repeat1 = 419, + aux_sym_protected_definition_repeat1 = 420, + aux_sym_protected_definition_repeat2 = 421, + aux_sym_protected_body_repeat1 = 422, + aux_sym_non_empty_declarative_part_repeat1 = 423, + aux_sym_exception_choice_list_repeat1 = 424, + aux_sym_exception_handler_list_repeat1 = 425, + aux_sym_generic_formal_part_repeat1 = 426, + aux_sym_global_aspect_definition_repeat1 = 427, + aux_sym_task_definition_repeat1 = 428, + aux_sym_parameter_specification_list_repeat1 = 429, + aux_sym_pragma_g_repeat1 = 430, + aux_sym_if_expression_repeat1 = 431, + aux_sym_record_representation_clause_repeat1 = 432, + aux_sym_sequence_of_statements_repeat1 = 433, + aux_sym_sequence_of_statements_repeat2 = 434, + aux_sym_selective_accept_repeat1 = 435, + aux_sym_case_statement_repeat1 = 436, + aux_sym_if_statement_repeat1 = 437, + aux_sym_variant_list_repeat1 = 438, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [sym_comment] = "comment", + [sym_string_literal] = "string_literal", + [sym_character_literal] = "character_literal", + [sym_numeric_literal] = "numeric_literal", + [anon_sym_EQ] = "=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_AMP] = "&", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_mod] = "mod", + [anon_sym_rem] = "rem", + [anon_sym_SQUOTE] = "'", + [anon_sym_DOT] = ".", + [anon_sym_AT] = "@", + [anon_sym_COMMA] = ",", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_LBRACK] = "[", + [aux_sym_value_sequence_token1] = "parallel", + [anon_sym_RBRACK] = "]", + [aux_sym_chunk_specification_token1] = "in", + [aux_sym_iterated_element_association_token1] = "for", + [aux_sym_iterated_element_association_token2] = "use", + [anon_sym_EQ_GT] = "=>", + [aux_sym_loop_parameter_specification_token1] = "reverse", + [aux_sym_iterator_filter_token1] = "when", + [anon_sym_COLON] = ":", + [aux_sym_iterator_specification_token1] = "of", + [aux_sym_attribute_designator_token1] = "access", + [aux_sym_attribute_designator_token2] = "delta", + [aux_sym_attribute_designator_token3] = "digits", + [aux_sym_attribute_designator_token4] = "mod", + [aux_sym_compilation_unit_token1] = "private", + [anon_sym_SEMI] = ";", + [aux_sym_package_specification_token1] = "package", + [aux_sym_package_specification_token2] = "is", + [aux_sym_package_specification_token3] = "end", + [aux_sym_with_clause_token1] = "limited", + [aux_sym_with_clause_token2] = "with", + [aux_sym_use_clause_token1] = "all", + [aux_sym_use_clause_token2] = "type", + [aux_sym_subunit_token1] = "separate", + [aux_sym_subprogram_body_token1] = "begin", + [aux_sym_package_body_token1] = "body", + [anon_sym_DOT_DOT] = "..", + [aux_sym_range_attribute_designator_token1] = "range", + [aux_sym_expression_token1] = "and", + [aux_sym_expression_token2] = "then", + [aux_sym_expression_token3] = "or", + [aux_sym_expression_token4] = "else", + [aux_sym_expression_token5] = "xor", + [aux_sym_relation_token1] = "not", + [aux_sym_raise_expression_token1] = "raise", + [anon_sym_PIPE] = "|", + [anon_sym_STAR_STAR] = "**", + [aux_sym_factor_token1] = "abs", + [aux_sym_primary_token1] = "null", + [aux_sym_allocator_token1] = "new", + [aux_sym_access_type_definition_token1] = "protected", + [aux_sym_general_access_modifier_token1] = "constant", + [aux_sym_access_to_subprogram_definition_token1] = "procedure", + [aux_sym_access_to_subprogram_definition_token2] = "function", + [anon_sym_LT_GT] = "<>", + [aux_sym_declare_expression_token1] = "declare", + [aux_sym_quantifier_token1] = "some", + [aux_sym_case_expression_token1] = "case", + [aux_sym_record_component_association_list_token1] = "record", + [aux_sym_private_type_declaration_token1] = "abstract", + [aux_sym_private_type_declaration_token2] = "tagged", + [aux_sym_private_extension_declaration_token1] = "synchronized", + [aux_sym_unconstrained_array_definition_token1] = "array", + [aux_sym_interface_type_definition_token1] = "task", + [aux_sym_interface_type_definition_token2] = "interface", + [aux_sym_component_list_token1] = ";", + [aux_sym_component_definition_token1] = "aliased", + [aux_sym_positional_array_aggregate_token1] = "others", + [anon_sym_COLON_EQ] = ":=", + [aux_sym_at_clause_token1] = "at", + [aux_sym_entry_declaration_token1] = "entry", + [aux_sym_exception_declaration_token1] = "exception", + [aux_sym_generic_formal_part_token1] = "generic", + [anon_sym_null] = "null", + [anon_sym_all] = "all", + [aux_sym_extended_global_aspect_definition_token1] = "do", + [aux_sym_global_mode_token1] = "overriding", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [aux_sym_non_empty_mode_token1] = "out", + [aux_sym_pragma_g_token1] = "pragma", + [aux_sym_if_expression_token1] = "if", + [aux_sym_elsif_expression_item_token1] = "elsif", + [aux_sym_object_renaming_declaration_token1] = "renames", + [aux_sym_result_profile_token1] = "return", + [aux_sym_asynchronous_select_token1] = "select", + [aux_sym_asynchronous_select_token2] = "abort", + [aux_sym_requeue_statement_token1] = "requeue", + [aux_sym_accept_statement_token1] = "accept", + [aux_sym_exit_statement_token1] = "exit", + [aux_sym_goto_statement_token1] = "goto", + [aux_sym_delay_until_statement_token1] = "delay", + [aux_sym_delay_until_statement_token2] = "until", + [aux_sym_loop_statement_token1] = "loop", + [aux_sym_iteration_scheme_token1] = "while", + [aux_sym_subtype_declaration_token1] = "subtype", + [sym_compilation] = "compilation", + [sym_relational_operator] = "relational_operator", + [sym_binary_adding_operator] = "binary_adding_operator", + [sym_unary_adding_operator] = "unary_adding_operator", + [sym_multiplying_operator] = "multiplying_operator", + [sym_tick] = "tick", + [sym_name] = "name", + [sym_name_list] = "name_list", + [sym_defining_identifier_list] = "defining_identifier_list", + [sym_attribute_reference] = "attribute_reference", + [sym_reduction_attribute_reference] = "reduction_attribute_reference", + [sym_reduction_attribute_designator] = "reduction_attribute_designator", + [sym_reduction_specification] = "reduction_specification", + [sym_value_sequence] = "value_sequence", + [sym_chunk_specification] = "chunk_specification", + [sym_iterated_element_association] = "iterated_element_association", + [sym_discrete_subtype_definition] = "discrete_subtype_definition", + [sym_loop_parameter_specification] = "loop_parameter_specification", + [sym_loop_parameter_subtype_indication] = "loop_parameter_subtype_indication", + [sym_iterator_filter] = "iterator_filter", + [sym_iterator_specification] = "iterator_specification", + [sym_attribute_designator] = "attribute_designator", + [sym_function_call] = "function_call", + [sym_qualified_expression] = "qualified_expression", + [sym_compilation_unit] = "compilation_unit", + [sym__declarative_item] = "_declarative_item", + [sym__basic_declarative_item] = "_basic_declarative_item", + [sym__basic_declaration] = "_basic_declaration", + [sym__package_declaration] = "_package_declaration", + [sym_package_specification] = "package_specification", + [sym_with_clause] = "with_clause", + [sym_use_clause] = "use_clause", + [sym_subunit] = "subunit", + [sym_proper_body] = "proper_body", + [sym_subprogram_body] = "subprogram_body", + [sym_package_body] = "package_body", + [sym_subtype_indication] = "subtype_indication", + [sym_constraint] = "constraint", + [sym_scalar_constraint] = "scalar_constraint", + [sym_range_g] = "range_g", + [sym_range_attribute_designator] = "range_attribute_designator", + [sym_range_constraint] = "range_constraint", + [sym_expression] = "expression", + [sym_relation] = "relation", + [sym_raise_expression] = "raise_expression", + [sym_membership_choice_list] = "membership_choice_list", + [sym_membership_choice] = "membership_choice", + [sym_simple_expression] = "simple_expression", + [sym_term] = "term", + [sym_factor] = "factor", + [sym__parenthesized_expression] = "_parenthesized_expression", + [sym_primary] = "primary", + [sym_allocator] = "allocator", + [sym_subtype_indication_paren_constraint] = "subtype_indication_paren_constraint", + [sym_subpool_specification] = "subpool_specification", + [sym_access_type_definition] = "access_type_definition", + [sym_access_to_object_definition] = "access_to_object_definition", + [sym_general_access_modifier] = "general_access_modifier", + [sym_access_to_subprogram_definition] = "access_to_subprogram_definition", + [sym_access_definition] = "access_definition", + [sym_actual_parameter_part] = "actual_parameter_part", + [sym_parameter_association] = "parameter_association", + [sym_conditional_expression] = "conditional_expression", + [sym_conditional_quantified_expression] = "conditional_quantified_expression", + [sym_quantified_expression] = "quantified_expression", + [sym_declare_expression] = "declare_expression", + [sym_declare_item] = "declare_item", + [sym_quantifier] = "quantifier", + [sym_case_expression] = "case_expression", + [sym_case_expression_alternative] = "case_expression_alternative", + [sym_component_choice_list] = "component_choice_list", + [sym_aggregate] = "aggregate", + [sym_delta_aggregate] = "delta_aggregate", + [sym_extension_aggregate] = "extension_aggregate", + [sym_record_delta_aggregate] = "record_delta_aggregate", + [sym_array_delta_aggregate] = "array_delta_aggregate", + [sym_record_aggregate] = "record_aggregate", + [sym_record_component_association_list] = "record_component_association_list", + [sym__named_record_component_association] = "_named_record_component_association", + [sym_null_exclusion] = "null_exclusion", + [sym_index_constraint] = "index_constraint", + [sym_digits_constraint] = "digits_constraint", + [sym_delta_constraint] = "delta_constraint", + [sym__basic_declarative_item_pragma] = "_basic_declarative_item_pragma", + [sym_type_declaration] = "type_declaration", + [sym_full_type_declaration] = "full_type_declaration", + [sym_private_type_declaration] = "private_type_declaration", + [sym_private_extension_declaration] = "private_extension_declaration", + [sym_discriminant_part] = "discriminant_part", + [sym_unknown_discriminant_part] = "unknown_discriminant_part", + [sym_known_discriminant_part] = "known_discriminant_part", + [sym_incomplete_type_declaration] = "incomplete_type_declaration", + [sym_discriminant_specification_list] = "discriminant_specification_list", + [sym_discriminant_specification] = "discriminant_specification", + [sym_type_definition] = "type_definition", + [sym_array_type_definition] = "array_type_definition", + [sym_unconstrained_array_definition] = "unconstrained_array_definition", + [sym_constrained_array_definition] = "constrained_array_definition", + [sym__discrete_subtype_definition_list] = "_discrete_subtype_definition_list", + [sym_discrete_range] = "discrete_range", + [sym__index_subtype_definition_list] = "_index_subtype_definition_list", + [sym_index_subtype_definition] = "index_subtype_definition", + [sym_enumeration_type_definition] = "enumeration_type_definition", + [sym__enumeration_literal_list] = "_enumeration_literal_list", + [sym__enumeration_literal_specification] = "_enumeration_literal_specification", + [sym_integer_type_definition] = "integer_type_definition", + [sym_modular_type_definition] = "modular_type_definition", + [sym_real_type_definition] = "real_type_definition", + [sym_floating_point_definition] = "floating_point_definition", + [sym_real_range_specification] = "real_range_specification", + [sym_fixed_point_definition] = "fixed_point_definition", + [sym_decimal_fixed_point_definition] = "decimal_fixed_point_definition", + [sym_ordinary_fixed_point_definition] = "ordinary_fixed_point_definition", + [sym_signed_integer_type_definition] = "signed_integer_type_definition", + [sym_derived_type_definition] = "derived_type_definition", + [sym_interface_type_definition] = "interface_type_definition", + [sym_interface_list] = "interface_list", + [sym_record_extension_part] = "record_extension_part", + [sym_record_type_definition] = "record_type_definition", + [sym_record_definition] = "record_definition", + [sym_component_list] = "component_list", + [sym_component_item] = "component_item", + [sym_component_declaration] = "component_declaration", + [sym_component_definition] = "component_definition", + [sym_array_aggregate] = "array_aggregate", + [sym_positional_array_aggregate] = "positional_array_aggregate", + [sym_null_array_aggregate] = "null_array_aggregate", + [sym_named_array_aggregate] = "named_array_aggregate", + [sym__array_component_association_list] = "_array_component_association_list", + [sym_array_component_association] = "array_component_association", + [sym_discrete_choice_list] = "discrete_choice_list", + [sym_discrete_choice] = "discrete_choice", + [sym_aspect_association] = "aspect_association", + [sym_aspect_clause] = "aspect_clause", + [sym_aspect_definition] = "aspect_definition", + [sym_aspect_mark] = "aspect_mark", + [sym_aspect_mark_list] = "aspect_mark_list", + [sym_aspect_specification] = "aspect_specification", + [sym_assign_value] = "assign_value", + [sym_at_clause] = "at_clause", + [sym_attribute_definition_clause] = "attribute_definition_clause", + [sym_body_stub] = "body_stub", + [sym_subprogram_body_stub] = "subprogram_body_stub", + [sym_package_body_stub] = "package_body_stub", + [sym_task_body] = "task_body", + [sym_task_body_stub] = "task_body_stub", + [sym_protected_operation_declaration] = "protected_operation_declaration", + [sym_protected_element_declaration] = "protected_element_declaration", + [sym_protected_operation_item] = "protected_operation_item", + [sym_protected_definition] = "protected_definition", + [sym_protected_type_declaration] = "protected_type_declaration", + [sym_single_protected_declaration] = "single_protected_declaration", + [sym_protected_body] = "protected_body", + [sym_protected_body_stub] = "protected_body_stub", + [sym_choice_parameter_specification] = "choice_parameter_specification", + [sym_component_clause] = "component_clause", + [sym_declarative_item_pragma] = "declarative_item_pragma", + [sym_non_empty_declarative_part] = "non_empty_declarative_part", + [sym_entry_declaration] = "entry_declaration", + [sym_entry_body] = "entry_body", + [sym_entry_barrier] = "entry_barrier", + [sym_entry_index_specification] = "entry_index_specification", + [sym_enumeration_aggregate] = "enumeration_aggregate", + [sym_enumeration_representation_clause] = "enumeration_representation_clause", + [sym_exception_choice_list] = "exception_choice_list", + [sym_exception_choice] = "exception_choice", + [sym_exception_declaration] = "exception_declaration", + [sym_exception_handler] = "exception_handler", + [sym_exception_handler_list] = "exception_handler_list", + [sym_formal_part] = "formal_part", + [sym_function_specification] = "function_specification", + [sym_generic_declaration] = "generic_declaration", + [sym_generic_formal_part] = "generic_formal_part", + [sym_generic_formal_parameter_declaration] = "generic_formal_parameter_declaration", + [sym_generic_subprogram_declaration] = "generic_subprogram_declaration", + [sym_generic_package_declaration] = "generic_package_declaration", + [sym_generic_instantiation] = "generic_instantiation", + [sym_formal_object_declaration] = "formal_object_declaration", + [sym_formal_type_declaration] = "formal_type_declaration", + [sym_formal_complete_type_declaration] = "formal_complete_type_declaration", + [sym_formal_incomplete_type_declaration] = "formal_incomplete_type_declaration", + [sym_formal_type_definition] = "formal_type_definition", + [sym_formal_private_type_definition] = "formal_private_type_definition", + [sym_formal_derived_type_definition] = "formal_derived_type_definition", + [sym_formal_discrete_type_definition] = "formal_discrete_type_definition", + [sym_formal_signed_integer_type_definition] = "formal_signed_integer_type_definition", + [sym_formal_modular_type_definition] = "formal_modular_type_definition", + [sym_formal_floating_point_definition] = "formal_floating_point_definition", + [sym_formal_ordinary_fixed_point_definition] = "formal_ordinary_fixed_point_definition", + [sym_formal_decimal_fixed_point_definition] = "formal_decimal_fixed_point_definition", + [sym_formal_array_type_definition] = "formal_array_type_definition", + [sym_formal_access_type_definition] = "formal_access_type_definition", + [sym_formal_interface_type_definition] = "formal_interface_type_definition", + [sym_formal_subprogram_declaration] = "formal_subprogram_declaration", + [sym_formal_concrete_subprogram_declaration] = "formal_concrete_subprogram_declaration", + [sym_formal_abstract_subprogram_declaration] = "formal_abstract_subprogram_declaration", + [sym_subprogram_default] = "subprogram_default", + [sym_formal_package_declaration] = "formal_package_declaration", + [sym_formal_group_designator] = "formal_group_designator", + [sym_extended_global_aspect_definition] = "extended_global_aspect_definition", + [sym_dispatching_operation_specifier] = "dispatching_operation_specifier", + [sym_global_aspect_definition] = "global_aspect_definition", + [sym_global_aspect_element] = "global_aspect_element", + [sym_global_mode] = "global_mode", + [sym_global_set] = "global_set", + [sym_handled_sequence_of_statements] = "handled_sequence_of_statements", + [sym_loop_label] = "loop_label", + [sym_label] = "label", + [sym_mod_clause] = "mod_clause", + [sym_non_empty_mode] = "non_empty_mode", + [sym_null_procedure_declaration] = "null_procedure_declaration", + [sym_null_statement] = "null_statement", + [sym_number_declaration] = "number_declaration", + [sym_object_declaration] = "object_declaration", + [sym_single_task_declaration] = "single_task_declaration", + [sym_task_type_declaration] = "task_type_declaration", + [sym_non_empty_entry_body_formal_part] = "non_empty_entry_body_formal_part", + [sym_task_item] = "task_item", + [sym_task_definition] = "task_definition", + [sym_overriding_indicator] = "overriding_indicator", + [sym_non_empty_parameter_profile] = "non_empty_parameter_profile", + [sym_parameter_and_result_profile] = "parameter_and_result_profile", + [sym_parameter_specification] = "parameter_specification", + [sym_parameter_specification_list] = "parameter_specification_list", + [sym_pragma_g] = "pragma_g", + [sym_pragma_argument_association] = "pragma_argument_association", + [sym_if_expression] = "if_expression", + [sym_elsif_expression_item] = "elsif_expression_item", + [sym_procedure_specification] = "procedure_specification", + [sym_record_representation_clause] = "record_representation_clause", + [sym_renaming_declaration] = "renaming_declaration", + [sym_object_renaming_declaration] = "object_renaming_declaration", + [sym_exception_renaming_declaration] = "exception_renaming_declaration", + [sym_package_renaming_declaration] = "package_renaming_declaration", + [sym_subprogram_renaming_declaration] = "subprogram_renaming_declaration", + [sym_generic_renaming_declaration] = "generic_renaming_declaration", + [sym_result_profile] = "result_profile", + [sym_sequence_of_statements] = "sequence_of_statements", + [sym_simple_statement] = "simple_statement", + [sym_statement] = "statement", + [sym_compound_statement] = "compound_statement", + [sym_select_statement] = "select_statement", + [sym_entry_call_alternative] = "entry_call_alternative", + [sym_asynchronous_select] = "asynchronous_select", + [sym_triggering_alternative] = "triggering_alternative", + [sym_conditional_entry_call] = "conditional_entry_call", + [sym_delay_alternative] = "delay_alternative", + [sym_timed_entry_call] = "timed_entry_call", + [sym_guard] = "guard", + [sym_guard_select] = "guard_select", + [sym_select_alternative] = "select_alternative", + [sym_selective_accept] = "selective_accept", + [sym_abort_statement] = "abort_statement", + [sym_requeue_statement] = "requeue_statement", + [sym_accept_statement] = "accept_statement", + [sym_case_statement_alternative] = "case_statement_alternative", + [sym_case_statement] = "case_statement", + [sym_block_statement] = "block_statement", + [sym_if_statement] = "if_statement", + [sym_elsif_statement_item] = "elsif_statement_item", + [sym_exit_statement] = "exit_statement", + [sym_goto_statement] = "goto_statement", + [sym_delay_statement] = "delay_statement", + [sym_delay_until_statement] = "delay_until_statement", + [sym_delay_relative_statement] = "delay_relative_statement", + [sym_simple_return_statement] = "simple_return_statement", + [sym_extended_return_statement] = "extended_return_statement", + [sym_extended_return_object_declaration] = "extended_return_object_declaration", + [sym_return_subtype_indication] = "return_subtype_indication", + [sym_procedure_call_statement] = "procedure_call_statement", + [sym_raise_statement] = "raise_statement", + [sym_loop_statement] = "loop_statement", + [sym_iteration_scheme] = "iteration_scheme", + [sym_assignment_statement] = "assignment_statement", + [sym_subprogram_declaration] = "subprogram_declaration", + [sym_expression_function_declaration] = "expression_function_declaration", + [sym_subprogram_specification] = "subprogram_specification", + [sym_subtype_declaration] = "subtype_declaration", + [sym_variant_part] = "variant_part", + [sym_variant_list] = "variant_list", + [sym_variant] = "variant", + [aux_sym_compilation_repeat1] = "compilation_repeat1", + [aux_sym_name_list_repeat1] = "name_list_repeat1", + [aux_sym_defining_identifier_list_repeat1] = "defining_identifier_list_repeat1", + [aux_sym_package_specification_repeat1] = "package_specification_repeat1", + [aux_sym_expression_repeat1] = "expression_repeat1", + [aux_sym_expression_repeat2] = "expression_repeat2", + [aux_sym_expression_repeat3] = "expression_repeat3", + [aux_sym_membership_choice_list_repeat1] = "membership_choice_list_repeat1", + [aux_sym_simple_expression_repeat1] = "simple_expression_repeat1", + [aux_sym_term_repeat1] = "term_repeat1", + [aux_sym_actual_parameter_part_repeat1] = "actual_parameter_part_repeat1", + [aux_sym_declare_expression_repeat1] = "declare_expression_repeat1", + [aux_sym_case_expression_repeat1] = "case_expression_repeat1", + [aux_sym_component_choice_list_repeat1] = "component_choice_list_repeat1", + [aux_sym_record_component_association_list_repeat1] = "record_component_association_list_repeat1", + [aux_sym_record_component_association_list_repeat2] = "record_component_association_list_repeat2", + [aux_sym_index_constraint_repeat1] = "index_constraint_repeat1", + [aux_sym_discriminant_specification_list_repeat1] = "discriminant_specification_list_repeat1", + [aux_sym__discrete_subtype_definition_list_repeat1] = "_discrete_subtype_definition_list_repeat1", + [aux_sym__index_subtype_definition_list_repeat1] = "_index_subtype_definition_list_repeat1", + [aux_sym__enumeration_literal_list_repeat1] = "_enumeration_literal_list_repeat1", + [aux_sym_interface_list_repeat1] = "interface_list_repeat1", + [aux_sym_component_list_repeat1] = "component_list_repeat1", + [aux_sym_positional_array_aggregate_repeat1] = "positional_array_aggregate_repeat1", + [aux_sym__array_component_association_list_repeat1] = "_array_component_association_list_repeat1", + [aux_sym_discrete_choice_list_repeat1] = "discrete_choice_list_repeat1", + [aux_sym_aspect_mark_list_repeat1] = "aspect_mark_list_repeat1", + [aux_sym_protected_definition_repeat1] = "protected_definition_repeat1", + [aux_sym_protected_definition_repeat2] = "protected_definition_repeat2", + [aux_sym_protected_body_repeat1] = "protected_body_repeat1", + [aux_sym_non_empty_declarative_part_repeat1] = "non_empty_declarative_part_repeat1", + [aux_sym_exception_choice_list_repeat1] = "exception_choice_list_repeat1", + [aux_sym_exception_handler_list_repeat1] = "exception_handler_list_repeat1", + [aux_sym_generic_formal_part_repeat1] = "generic_formal_part_repeat1", + [aux_sym_global_aspect_definition_repeat1] = "global_aspect_definition_repeat1", + [aux_sym_task_definition_repeat1] = "task_definition_repeat1", + [aux_sym_parameter_specification_list_repeat1] = "parameter_specification_list_repeat1", + [aux_sym_pragma_g_repeat1] = "pragma_g_repeat1", + [aux_sym_if_expression_repeat1] = "if_expression_repeat1", + [aux_sym_record_representation_clause_repeat1] = "record_representation_clause_repeat1", + [aux_sym_sequence_of_statements_repeat1] = "sequence_of_statements_repeat1", + [aux_sym_sequence_of_statements_repeat2] = "sequence_of_statements_repeat2", + [aux_sym_selective_accept_repeat1] = "selective_accept_repeat1", + [aux_sym_case_statement_repeat1] = "case_statement_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_variant_list_repeat1] = "variant_list_repeat1", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [sym_comment] = sym_comment, + [sym_string_literal] = sym_string_literal, + [sym_character_literal] = sym_character_literal, + [sym_numeric_literal] = sym_numeric_literal, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_mod] = anon_sym_mod, + [anon_sym_rem] = anon_sym_rem, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [aux_sym_value_sequence_token1] = aux_sym_value_sequence_token1, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [aux_sym_chunk_specification_token1] = aux_sym_chunk_specification_token1, + [aux_sym_iterated_element_association_token1] = aux_sym_iterated_element_association_token1, + [aux_sym_iterated_element_association_token2] = aux_sym_iterated_element_association_token2, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [aux_sym_loop_parameter_specification_token1] = aux_sym_loop_parameter_specification_token1, + [aux_sym_iterator_filter_token1] = aux_sym_iterator_filter_token1, + [anon_sym_COLON] = anon_sym_COLON, + [aux_sym_iterator_specification_token1] = aux_sym_iterator_specification_token1, + [aux_sym_attribute_designator_token1] = aux_sym_attribute_designator_token1, + [aux_sym_attribute_designator_token2] = aux_sym_attribute_designator_token2, + [aux_sym_attribute_designator_token3] = aux_sym_attribute_designator_token3, + [aux_sym_attribute_designator_token4] = anon_sym_mod, + [aux_sym_compilation_unit_token1] = aux_sym_compilation_unit_token1, + [anon_sym_SEMI] = anon_sym_SEMI, + [aux_sym_package_specification_token1] = aux_sym_package_specification_token1, + [aux_sym_package_specification_token2] = aux_sym_package_specification_token2, + [aux_sym_package_specification_token3] = aux_sym_package_specification_token3, + [aux_sym_with_clause_token1] = aux_sym_with_clause_token1, + [aux_sym_with_clause_token2] = aux_sym_with_clause_token2, + [aux_sym_use_clause_token1] = anon_sym_all, + [aux_sym_use_clause_token2] = aux_sym_use_clause_token2, + [aux_sym_subunit_token1] = aux_sym_subunit_token1, + [aux_sym_subprogram_body_token1] = aux_sym_subprogram_body_token1, + [aux_sym_package_body_token1] = aux_sym_package_body_token1, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [aux_sym_range_attribute_designator_token1] = aux_sym_range_attribute_designator_token1, + [aux_sym_expression_token1] = aux_sym_expression_token1, + [aux_sym_expression_token2] = aux_sym_expression_token2, + [aux_sym_expression_token3] = aux_sym_expression_token3, + [aux_sym_expression_token4] = aux_sym_expression_token4, + [aux_sym_expression_token5] = aux_sym_expression_token5, + [aux_sym_relation_token1] = aux_sym_relation_token1, + [aux_sym_raise_expression_token1] = aux_sym_raise_expression_token1, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [aux_sym_factor_token1] = aux_sym_factor_token1, + [aux_sym_primary_token1] = anon_sym_null, + [aux_sym_allocator_token1] = aux_sym_allocator_token1, + [aux_sym_access_type_definition_token1] = aux_sym_access_type_definition_token1, + [aux_sym_general_access_modifier_token1] = aux_sym_general_access_modifier_token1, + [aux_sym_access_to_subprogram_definition_token1] = aux_sym_access_to_subprogram_definition_token1, + [aux_sym_access_to_subprogram_definition_token2] = aux_sym_access_to_subprogram_definition_token2, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [aux_sym_declare_expression_token1] = aux_sym_declare_expression_token1, + [aux_sym_quantifier_token1] = aux_sym_quantifier_token1, + [aux_sym_case_expression_token1] = aux_sym_case_expression_token1, + [aux_sym_record_component_association_list_token1] = aux_sym_record_component_association_list_token1, + [aux_sym_private_type_declaration_token1] = aux_sym_private_type_declaration_token1, + [aux_sym_private_type_declaration_token2] = aux_sym_private_type_declaration_token2, + [aux_sym_private_extension_declaration_token1] = aux_sym_private_extension_declaration_token1, + [aux_sym_unconstrained_array_definition_token1] = aux_sym_unconstrained_array_definition_token1, + [aux_sym_interface_type_definition_token1] = aux_sym_interface_type_definition_token1, + [aux_sym_interface_type_definition_token2] = aux_sym_interface_type_definition_token2, + [aux_sym_component_list_token1] = anon_sym_SEMI, + [aux_sym_component_definition_token1] = aux_sym_component_definition_token1, + [aux_sym_positional_array_aggregate_token1] = aux_sym_positional_array_aggregate_token1, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [aux_sym_at_clause_token1] = aux_sym_at_clause_token1, + [aux_sym_entry_declaration_token1] = aux_sym_entry_declaration_token1, + [aux_sym_exception_declaration_token1] = aux_sym_exception_declaration_token1, + [aux_sym_generic_formal_part_token1] = aux_sym_generic_formal_part_token1, + [anon_sym_null] = anon_sym_null, + [anon_sym_all] = anon_sym_all, + [aux_sym_extended_global_aspect_definition_token1] = aux_sym_extended_global_aspect_definition_token1, + [aux_sym_global_mode_token1] = aux_sym_global_mode_token1, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [aux_sym_non_empty_mode_token1] = aux_sym_non_empty_mode_token1, + [aux_sym_pragma_g_token1] = aux_sym_pragma_g_token1, + [aux_sym_if_expression_token1] = aux_sym_if_expression_token1, + [aux_sym_elsif_expression_item_token1] = aux_sym_elsif_expression_item_token1, + [aux_sym_object_renaming_declaration_token1] = aux_sym_object_renaming_declaration_token1, + [aux_sym_result_profile_token1] = aux_sym_result_profile_token1, + [aux_sym_asynchronous_select_token1] = aux_sym_asynchronous_select_token1, + [aux_sym_asynchronous_select_token2] = aux_sym_asynchronous_select_token2, + [aux_sym_requeue_statement_token1] = aux_sym_requeue_statement_token1, + [aux_sym_accept_statement_token1] = aux_sym_accept_statement_token1, + [aux_sym_exit_statement_token1] = aux_sym_exit_statement_token1, + [aux_sym_goto_statement_token1] = aux_sym_goto_statement_token1, + [aux_sym_delay_until_statement_token1] = aux_sym_delay_until_statement_token1, + [aux_sym_delay_until_statement_token2] = aux_sym_delay_until_statement_token2, + [aux_sym_loop_statement_token1] = aux_sym_loop_statement_token1, + [aux_sym_iteration_scheme_token1] = aux_sym_iteration_scheme_token1, + [aux_sym_subtype_declaration_token1] = aux_sym_subtype_declaration_token1, + [sym_compilation] = sym_compilation, + [sym_relational_operator] = sym_relational_operator, + [sym_binary_adding_operator] = sym_binary_adding_operator, + [sym_unary_adding_operator] = sym_unary_adding_operator, + [sym_multiplying_operator] = sym_multiplying_operator, + [sym_tick] = sym_tick, + [sym_name] = sym_name, + [sym_name_list] = sym_name_list, + [sym_defining_identifier_list] = sym_defining_identifier_list, + [sym_attribute_reference] = sym_attribute_reference, + [sym_reduction_attribute_reference] = sym_reduction_attribute_reference, + [sym_reduction_attribute_designator] = sym_reduction_attribute_designator, + [sym_reduction_specification] = sym_reduction_specification, + [sym_value_sequence] = sym_value_sequence, + [sym_chunk_specification] = sym_chunk_specification, + [sym_iterated_element_association] = sym_iterated_element_association, + [sym_discrete_subtype_definition] = sym_discrete_subtype_definition, + [sym_loop_parameter_specification] = sym_loop_parameter_specification, + [sym_loop_parameter_subtype_indication] = sym_loop_parameter_subtype_indication, + [sym_iterator_filter] = sym_iterator_filter, + [sym_iterator_specification] = sym_iterator_specification, + [sym_attribute_designator] = sym_attribute_designator, + [sym_function_call] = sym_function_call, + [sym_qualified_expression] = sym_qualified_expression, + [sym_compilation_unit] = sym_compilation_unit, + [sym__declarative_item] = sym__declarative_item, + [sym__basic_declarative_item] = sym__basic_declarative_item, + [sym__basic_declaration] = sym__basic_declaration, + [sym__package_declaration] = sym__package_declaration, + [sym_package_specification] = sym_package_specification, + [sym_with_clause] = sym_with_clause, + [sym_use_clause] = sym_use_clause, + [sym_subunit] = sym_subunit, + [sym_proper_body] = sym_proper_body, + [sym_subprogram_body] = sym_subprogram_body, + [sym_package_body] = sym_package_body, + [sym_subtype_indication] = sym_subtype_indication, + [sym_constraint] = sym_constraint, + [sym_scalar_constraint] = sym_scalar_constraint, + [sym_range_g] = sym_range_g, + [sym_range_attribute_designator] = sym_range_attribute_designator, + [sym_range_constraint] = sym_range_constraint, + [sym_expression] = sym_expression, + [sym_relation] = sym_relation, + [sym_raise_expression] = sym_raise_expression, + [sym_membership_choice_list] = sym_membership_choice_list, + [sym_membership_choice] = sym_membership_choice, + [sym_simple_expression] = sym_simple_expression, + [sym_term] = sym_term, + [sym_factor] = sym_factor, + [sym__parenthesized_expression] = sym__parenthesized_expression, + [sym_primary] = sym_primary, + [sym_allocator] = sym_allocator, + [sym_subtype_indication_paren_constraint] = sym_subtype_indication_paren_constraint, + [sym_subpool_specification] = sym_subpool_specification, + [sym_access_type_definition] = sym_access_type_definition, + [sym_access_to_object_definition] = sym_access_to_object_definition, + [sym_general_access_modifier] = sym_general_access_modifier, + [sym_access_to_subprogram_definition] = sym_access_to_subprogram_definition, + [sym_access_definition] = sym_access_definition, + [sym_actual_parameter_part] = sym_actual_parameter_part, + [sym_parameter_association] = sym_parameter_association, + [sym_conditional_expression] = sym_conditional_expression, + [sym_conditional_quantified_expression] = sym_conditional_quantified_expression, + [sym_quantified_expression] = sym_quantified_expression, + [sym_declare_expression] = sym_declare_expression, + [sym_declare_item] = sym_declare_item, + [sym_quantifier] = sym_quantifier, + [sym_case_expression] = sym_case_expression, + [sym_case_expression_alternative] = sym_case_expression_alternative, + [sym_component_choice_list] = sym_component_choice_list, + [sym_aggregate] = sym_aggregate, + [sym_delta_aggregate] = sym_delta_aggregate, + [sym_extension_aggregate] = sym_extension_aggregate, + [sym_record_delta_aggregate] = sym_record_delta_aggregate, + [sym_array_delta_aggregate] = sym_array_delta_aggregate, + [sym_record_aggregate] = sym_record_aggregate, + [sym_record_component_association_list] = sym_record_component_association_list, + [sym__named_record_component_association] = sym__named_record_component_association, + [sym_null_exclusion] = sym_null_exclusion, + [sym_index_constraint] = sym_index_constraint, + [sym_digits_constraint] = sym_digits_constraint, + [sym_delta_constraint] = sym_delta_constraint, + [sym__basic_declarative_item_pragma] = sym__basic_declarative_item_pragma, + [sym_type_declaration] = sym_type_declaration, + [sym_full_type_declaration] = sym_full_type_declaration, + [sym_private_type_declaration] = sym_private_type_declaration, + [sym_private_extension_declaration] = sym_private_extension_declaration, + [sym_discriminant_part] = sym_discriminant_part, + [sym_unknown_discriminant_part] = sym_unknown_discriminant_part, + [sym_known_discriminant_part] = sym_known_discriminant_part, + [sym_incomplete_type_declaration] = sym_incomplete_type_declaration, + [sym_discriminant_specification_list] = sym_discriminant_specification_list, + [sym_discriminant_specification] = sym_discriminant_specification, + [sym_type_definition] = sym_type_definition, + [sym_array_type_definition] = sym_array_type_definition, + [sym_unconstrained_array_definition] = sym_unconstrained_array_definition, + [sym_constrained_array_definition] = sym_constrained_array_definition, + [sym__discrete_subtype_definition_list] = sym__discrete_subtype_definition_list, + [sym_discrete_range] = sym_discrete_range, + [sym__index_subtype_definition_list] = sym__index_subtype_definition_list, + [sym_index_subtype_definition] = sym_index_subtype_definition, + [sym_enumeration_type_definition] = sym_enumeration_type_definition, + [sym__enumeration_literal_list] = sym__enumeration_literal_list, + [sym__enumeration_literal_specification] = sym__enumeration_literal_specification, + [sym_integer_type_definition] = sym_integer_type_definition, + [sym_modular_type_definition] = sym_modular_type_definition, + [sym_real_type_definition] = sym_real_type_definition, + [sym_floating_point_definition] = sym_floating_point_definition, + [sym_real_range_specification] = sym_real_range_specification, + [sym_fixed_point_definition] = sym_fixed_point_definition, + [sym_decimal_fixed_point_definition] = sym_decimal_fixed_point_definition, + [sym_ordinary_fixed_point_definition] = sym_ordinary_fixed_point_definition, + [sym_signed_integer_type_definition] = sym_signed_integer_type_definition, + [sym_derived_type_definition] = sym_derived_type_definition, + [sym_interface_type_definition] = sym_interface_type_definition, + [sym_interface_list] = sym_interface_list, + [sym_record_extension_part] = sym_record_extension_part, + [sym_record_type_definition] = sym_record_type_definition, + [sym_record_definition] = sym_record_definition, + [sym_component_list] = sym_component_list, + [sym_component_item] = sym_component_item, + [sym_component_declaration] = sym_component_declaration, + [sym_component_definition] = sym_component_definition, + [sym_array_aggregate] = sym_array_aggregate, + [sym_positional_array_aggregate] = sym_positional_array_aggregate, + [sym_null_array_aggregate] = sym_null_array_aggregate, + [sym_named_array_aggregate] = sym_named_array_aggregate, + [sym__array_component_association_list] = sym__array_component_association_list, + [sym_array_component_association] = sym_array_component_association, + [sym_discrete_choice_list] = sym_discrete_choice_list, + [sym_discrete_choice] = sym_discrete_choice, + [sym_aspect_association] = sym_aspect_association, + [sym_aspect_clause] = sym_aspect_clause, + [sym_aspect_definition] = sym_aspect_definition, + [sym_aspect_mark] = sym_aspect_mark, + [sym_aspect_mark_list] = sym_aspect_mark_list, + [sym_aspect_specification] = sym_aspect_specification, + [sym_assign_value] = sym_assign_value, + [sym_at_clause] = sym_at_clause, + [sym_attribute_definition_clause] = sym_attribute_definition_clause, + [sym_body_stub] = sym_body_stub, + [sym_subprogram_body_stub] = sym_subprogram_body_stub, + [sym_package_body_stub] = sym_package_body_stub, + [sym_task_body] = sym_task_body, + [sym_task_body_stub] = sym_task_body_stub, + [sym_protected_operation_declaration] = sym_protected_operation_declaration, + [sym_protected_element_declaration] = sym_protected_element_declaration, + [sym_protected_operation_item] = sym_protected_operation_item, + [sym_protected_definition] = sym_protected_definition, + [sym_protected_type_declaration] = sym_protected_type_declaration, + [sym_single_protected_declaration] = sym_single_protected_declaration, + [sym_protected_body] = sym_protected_body, + [sym_protected_body_stub] = sym_protected_body_stub, + [sym_choice_parameter_specification] = sym_choice_parameter_specification, + [sym_component_clause] = sym_component_clause, + [sym_declarative_item_pragma] = sym_declarative_item_pragma, + [sym_non_empty_declarative_part] = sym_non_empty_declarative_part, + [sym_entry_declaration] = sym_entry_declaration, + [sym_entry_body] = sym_entry_body, + [sym_entry_barrier] = sym_entry_barrier, + [sym_entry_index_specification] = sym_entry_index_specification, + [sym_enumeration_aggregate] = sym_enumeration_aggregate, + [sym_enumeration_representation_clause] = sym_enumeration_representation_clause, + [sym_exception_choice_list] = sym_exception_choice_list, + [sym_exception_choice] = sym_exception_choice, + [sym_exception_declaration] = sym_exception_declaration, + [sym_exception_handler] = sym_exception_handler, + [sym_exception_handler_list] = sym_exception_handler_list, + [sym_formal_part] = sym_formal_part, + [sym_function_specification] = sym_function_specification, + [sym_generic_declaration] = sym_generic_declaration, + [sym_generic_formal_part] = sym_generic_formal_part, + [sym_generic_formal_parameter_declaration] = sym_generic_formal_parameter_declaration, + [sym_generic_subprogram_declaration] = sym_generic_subprogram_declaration, + [sym_generic_package_declaration] = sym_generic_package_declaration, + [sym_generic_instantiation] = sym_generic_instantiation, + [sym_formal_object_declaration] = sym_formal_object_declaration, + [sym_formal_type_declaration] = sym_formal_type_declaration, + [sym_formal_complete_type_declaration] = sym_formal_complete_type_declaration, + [sym_formal_incomplete_type_declaration] = sym_formal_incomplete_type_declaration, + [sym_formal_type_definition] = sym_formal_type_definition, + [sym_formal_private_type_definition] = sym_formal_private_type_definition, + [sym_formal_derived_type_definition] = sym_formal_derived_type_definition, + [sym_formal_discrete_type_definition] = sym_formal_discrete_type_definition, + [sym_formal_signed_integer_type_definition] = sym_formal_signed_integer_type_definition, + [sym_formal_modular_type_definition] = sym_formal_modular_type_definition, + [sym_formal_floating_point_definition] = sym_formal_floating_point_definition, + [sym_formal_ordinary_fixed_point_definition] = sym_formal_ordinary_fixed_point_definition, + [sym_formal_decimal_fixed_point_definition] = sym_formal_decimal_fixed_point_definition, + [sym_formal_array_type_definition] = sym_formal_array_type_definition, + [sym_formal_access_type_definition] = sym_formal_access_type_definition, + [sym_formal_interface_type_definition] = sym_formal_interface_type_definition, + [sym_formal_subprogram_declaration] = sym_formal_subprogram_declaration, + [sym_formal_concrete_subprogram_declaration] = sym_formal_concrete_subprogram_declaration, + [sym_formal_abstract_subprogram_declaration] = sym_formal_abstract_subprogram_declaration, + [sym_subprogram_default] = sym_subprogram_default, + [sym_formal_package_declaration] = sym_formal_package_declaration, + [sym_formal_group_designator] = sym_formal_group_designator, + [sym_extended_global_aspect_definition] = sym_extended_global_aspect_definition, + [sym_dispatching_operation_specifier] = sym_dispatching_operation_specifier, + [sym_global_aspect_definition] = sym_global_aspect_definition, + [sym_global_aspect_element] = sym_global_aspect_element, + [sym_global_mode] = sym_global_mode, + [sym_global_set] = sym_global_set, + [sym_handled_sequence_of_statements] = sym_handled_sequence_of_statements, + [sym_loop_label] = sym_loop_label, + [sym_label] = sym_label, + [sym_mod_clause] = sym_mod_clause, + [sym_non_empty_mode] = sym_non_empty_mode, + [sym_null_procedure_declaration] = sym_null_procedure_declaration, + [sym_null_statement] = sym_null_statement, + [sym_number_declaration] = sym_number_declaration, + [sym_object_declaration] = sym_object_declaration, + [sym_single_task_declaration] = sym_single_task_declaration, + [sym_task_type_declaration] = sym_task_type_declaration, + [sym_non_empty_entry_body_formal_part] = sym_non_empty_entry_body_formal_part, + [sym_task_item] = sym_task_item, + [sym_task_definition] = sym_task_definition, + [sym_overriding_indicator] = sym_overriding_indicator, + [sym_non_empty_parameter_profile] = sym_non_empty_parameter_profile, + [sym_parameter_and_result_profile] = sym_parameter_and_result_profile, + [sym_parameter_specification] = sym_parameter_specification, + [sym_parameter_specification_list] = sym_parameter_specification_list, + [sym_pragma_g] = sym_pragma_g, + [sym_pragma_argument_association] = sym_pragma_argument_association, + [sym_if_expression] = sym_if_expression, + [sym_elsif_expression_item] = sym_elsif_expression_item, + [sym_procedure_specification] = sym_procedure_specification, + [sym_record_representation_clause] = sym_record_representation_clause, + [sym_renaming_declaration] = sym_renaming_declaration, + [sym_object_renaming_declaration] = sym_object_renaming_declaration, + [sym_exception_renaming_declaration] = sym_exception_renaming_declaration, + [sym_package_renaming_declaration] = sym_package_renaming_declaration, + [sym_subprogram_renaming_declaration] = sym_subprogram_renaming_declaration, + [sym_generic_renaming_declaration] = sym_generic_renaming_declaration, + [sym_result_profile] = sym_result_profile, + [sym_sequence_of_statements] = sym_sequence_of_statements, + [sym_simple_statement] = sym_simple_statement, + [sym_statement] = sym_statement, + [sym_compound_statement] = sym_compound_statement, + [sym_select_statement] = sym_select_statement, + [sym_entry_call_alternative] = sym_entry_call_alternative, + [sym_asynchronous_select] = sym_asynchronous_select, + [sym_triggering_alternative] = sym_triggering_alternative, + [sym_conditional_entry_call] = sym_conditional_entry_call, + [sym_delay_alternative] = sym_delay_alternative, + [sym_timed_entry_call] = sym_timed_entry_call, + [sym_guard] = sym_guard, + [sym_guard_select] = sym_guard_select, + [sym_select_alternative] = sym_select_alternative, + [sym_selective_accept] = sym_selective_accept, + [sym_abort_statement] = sym_abort_statement, + [sym_requeue_statement] = sym_requeue_statement, + [sym_accept_statement] = sym_accept_statement, + [sym_case_statement_alternative] = sym_case_statement_alternative, + [sym_case_statement] = sym_case_statement, + [sym_block_statement] = sym_block_statement, + [sym_if_statement] = sym_if_statement, + [sym_elsif_statement_item] = sym_elsif_statement_item, + [sym_exit_statement] = sym_exit_statement, + [sym_goto_statement] = sym_goto_statement, + [sym_delay_statement] = sym_delay_statement, + [sym_delay_until_statement] = sym_delay_until_statement, + [sym_delay_relative_statement] = sym_delay_relative_statement, + [sym_simple_return_statement] = sym_simple_return_statement, + [sym_extended_return_statement] = sym_extended_return_statement, + [sym_extended_return_object_declaration] = sym_extended_return_object_declaration, + [sym_return_subtype_indication] = sym_return_subtype_indication, + [sym_procedure_call_statement] = sym_procedure_call_statement, + [sym_raise_statement] = sym_raise_statement, + [sym_loop_statement] = sym_loop_statement, + [sym_iteration_scheme] = sym_iteration_scheme, + [sym_assignment_statement] = sym_assignment_statement, + [sym_subprogram_declaration] = sym_subprogram_declaration, + [sym_expression_function_declaration] = sym_expression_function_declaration, + [sym_subprogram_specification] = sym_subprogram_specification, + [sym_subtype_declaration] = sym_subtype_declaration, + [sym_variant_part] = sym_variant_part, + [sym_variant_list] = sym_variant_list, + [sym_variant] = sym_variant, + [aux_sym_compilation_repeat1] = aux_sym_compilation_repeat1, + [aux_sym_name_list_repeat1] = aux_sym_name_list_repeat1, + [aux_sym_defining_identifier_list_repeat1] = aux_sym_defining_identifier_list_repeat1, + [aux_sym_package_specification_repeat1] = aux_sym_package_specification_repeat1, + [aux_sym_expression_repeat1] = aux_sym_expression_repeat1, + [aux_sym_expression_repeat2] = aux_sym_expression_repeat2, + [aux_sym_expression_repeat3] = aux_sym_expression_repeat3, + [aux_sym_membership_choice_list_repeat1] = aux_sym_membership_choice_list_repeat1, + [aux_sym_simple_expression_repeat1] = aux_sym_simple_expression_repeat1, + [aux_sym_term_repeat1] = aux_sym_term_repeat1, + [aux_sym_actual_parameter_part_repeat1] = aux_sym_actual_parameter_part_repeat1, + [aux_sym_declare_expression_repeat1] = aux_sym_declare_expression_repeat1, + [aux_sym_case_expression_repeat1] = aux_sym_case_expression_repeat1, + [aux_sym_component_choice_list_repeat1] = aux_sym_component_choice_list_repeat1, + [aux_sym_record_component_association_list_repeat1] = aux_sym_record_component_association_list_repeat1, + [aux_sym_record_component_association_list_repeat2] = aux_sym_record_component_association_list_repeat2, + [aux_sym_index_constraint_repeat1] = aux_sym_index_constraint_repeat1, + [aux_sym_discriminant_specification_list_repeat1] = aux_sym_discriminant_specification_list_repeat1, + [aux_sym__discrete_subtype_definition_list_repeat1] = aux_sym__discrete_subtype_definition_list_repeat1, + [aux_sym__index_subtype_definition_list_repeat1] = aux_sym__index_subtype_definition_list_repeat1, + [aux_sym__enumeration_literal_list_repeat1] = aux_sym__enumeration_literal_list_repeat1, + [aux_sym_interface_list_repeat1] = aux_sym_interface_list_repeat1, + [aux_sym_component_list_repeat1] = aux_sym_component_list_repeat1, + [aux_sym_positional_array_aggregate_repeat1] = aux_sym_positional_array_aggregate_repeat1, + [aux_sym__array_component_association_list_repeat1] = aux_sym__array_component_association_list_repeat1, + [aux_sym_discrete_choice_list_repeat1] = aux_sym_discrete_choice_list_repeat1, + [aux_sym_aspect_mark_list_repeat1] = aux_sym_aspect_mark_list_repeat1, + [aux_sym_protected_definition_repeat1] = aux_sym_protected_definition_repeat1, + [aux_sym_protected_definition_repeat2] = aux_sym_protected_definition_repeat2, + [aux_sym_protected_body_repeat1] = aux_sym_protected_body_repeat1, + [aux_sym_non_empty_declarative_part_repeat1] = aux_sym_non_empty_declarative_part_repeat1, + [aux_sym_exception_choice_list_repeat1] = aux_sym_exception_choice_list_repeat1, + [aux_sym_exception_handler_list_repeat1] = aux_sym_exception_handler_list_repeat1, + [aux_sym_generic_formal_part_repeat1] = aux_sym_generic_formal_part_repeat1, + [aux_sym_global_aspect_definition_repeat1] = aux_sym_global_aspect_definition_repeat1, + [aux_sym_task_definition_repeat1] = aux_sym_task_definition_repeat1, + [aux_sym_parameter_specification_list_repeat1] = aux_sym_parameter_specification_list_repeat1, + [aux_sym_pragma_g_repeat1] = aux_sym_pragma_g_repeat1, + [aux_sym_if_expression_repeat1] = aux_sym_if_expression_repeat1, + [aux_sym_record_representation_clause_repeat1] = aux_sym_record_representation_clause_repeat1, + [aux_sym_sequence_of_statements_repeat1] = aux_sym_sequence_of_statements_repeat1, + [aux_sym_sequence_of_statements_repeat2] = aux_sym_sequence_of_statements_repeat2, + [aux_sym_selective_accept_repeat1] = aux_sym_selective_accept_repeat1, + [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_variant_list_repeat1] = aux_sym_variant_list_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym_character_literal] = { + .visible = true, + .named = true, + }, + [sym_numeric_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_mod] = { + .visible = true, + .named = false, + }, + [anon_sym_rem] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [aux_sym_value_sequence_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [aux_sym_chunk_specification_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_iterated_element_association_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_iterated_element_association_token2] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [aux_sym_loop_parameter_specification_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_iterator_filter_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [aux_sym_iterator_specification_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_attribute_designator_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_attribute_designator_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_attribute_designator_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_attribute_designator_token4] = { + .visible = true, + .named = false, + }, + [aux_sym_compilation_unit_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [aux_sym_package_specification_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_package_specification_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_package_specification_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_with_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_with_clause_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_use_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_use_clause_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_subunit_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_subprogram_body_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_package_body_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [aux_sym_range_attribute_designator_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_expression_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_expression_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_expression_token4] = { + .visible = true, + .named = false, + }, + [aux_sym_expression_token5] = { + .visible = true, + .named = false, + }, + [aux_sym_relation_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_raise_expression_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_factor_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_primary_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_allocator_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_access_type_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_general_access_modifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_access_to_subprogram_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_access_to_subprogram_definition_token2] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [aux_sym_declare_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_quantifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_case_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_record_component_association_list_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_private_type_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_private_type_declaration_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_private_extension_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_unconstrained_array_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_interface_type_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_interface_type_definition_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_component_list_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_component_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_positional_array_aggregate_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = false, + }, + [aux_sym_at_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_entry_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_exception_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_generic_formal_part_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_null] = { + .visible = true, + .named = false, + }, + [anon_sym_all] = { + .visible = true, + .named = false, + }, + [aux_sym_extended_global_aspect_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_global_mode_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [aux_sym_non_empty_mode_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_pragma_g_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_if_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_elsif_expression_item_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_object_renaming_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_result_profile_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_asynchronous_select_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_asynchronous_select_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_requeue_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_accept_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_exit_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_goto_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_delay_until_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_delay_until_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_loop_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_iteration_scheme_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_subtype_declaration_token1] = { + .visible = true, + .named = false, + }, + [sym_compilation] = { + .visible = true, + .named = true, + }, + [sym_relational_operator] = { + .visible = true, + .named = true, + }, + [sym_binary_adding_operator] = { + .visible = true, + .named = true, + }, + [sym_unary_adding_operator] = { + .visible = true, + .named = true, + }, + [sym_multiplying_operator] = { + .visible = true, + .named = true, + }, + [sym_tick] = { + .visible = true, + .named = true, + }, + [sym_name] = { + .visible = true, + .named = true, + }, + [sym_name_list] = { + .visible = true, + .named = true, + }, + [sym_defining_identifier_list] = { + .visible = true, + .named = true, + }, + [sym_attribute_reference] = { + .visible = true, + .named = true, + }, + [sym_reduction_attribute_reference] = { + .visible = true, + .named = true, + }, + [sym_reduction_attribute_designator] = { + .visible = true, + .named = true, + }, + [sym_reduction_specification] = { + .visible = true, + .named = true, + }, + [sym_value_sequence] = { + .visible = true, + .named = true, + }, + [sym_chunk_specification] = { + .visible = true, + .named = true, + }, + [sym_iterated_element_association] = { + .visible = true, + .named = true, + }, + [sym_discrete_subtype_definition] = { + .visible = true, + .named = true, + }, + [sym_loop_parameter_specification] = { + .visible = true, + .named = true, + }, + [sym_loop_parameter_subtype_indication] = { + .visible = true, + .named = true, + }, + [sym_iterator_filter] = { + .visible = true, + .named = true, + }, + [sym_iterator_specification] = { + .visible = true, + .named = true, + }, + [sym_attribute_designator] = { + .visible = true, + .named = true, + }, + [sym_function_call] = { + .visible = true, + .named = true, + }, + [sym_qualified_expression] = { + .visible = true, + .named = true, + }, + [sym_compilation_unit] = { + .visible = true, + .named = true, + }, + [sym__declarative_item] = { + .visible = false, + .named = true, + }, + [sym__basic_declarative_item] = { + .visible = false, + .named = true, + }, + [sym__basic_declaration] = { + .visible = false, + .named = true, + }, + [sym__package_declaration] = { + .visible = false, + .named = true, + }, + [sym_package_specification] = { + .visible = true, + .named = true, + }, + [sym_with_clause] = { + .visible = true, + .named = true, + }, + [sym_use_clause] = { + .visible = true, + .named = true, + }, + [sym_subunit] = { + .visible = true, + .named = true, + }, + [sym_proper_body] = { + .visible = true, + .named = true, + }, + [sym_subprogram_body] = { + .visible = true, + .named = true, + }, + [sym_package_body] = { + .visible = true, + .named = true, + }, + [sym_subtype_indication] = { + .visible = true, + .named = true, + }, + [sym_constraint] = { + .visible = true, + .named = true, + }, + [sym_scalar_constraint] = { + .visible = true, + .named = true, + }, + [sym_range_g] = { + .visible = true, + .named = true, + }, + [sym_range_attribute_designator] = { + .visible = true, + .named = true, + }, + [sym_range_constraint] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = true, + .named = true, + }, + [sym_relation] = { + .visible = true, + .named = true, + }, + [sym_raise_expression] = { + .visible = true, + .named = true, + }, + [sym_membership_choice_list] = { + .visible = true, + .named = true, + }, + [sym_membership_choice] = { + .visible = true, + .named = true, + }, + [sym_simple_expression] = { + .visible = true, + .named = true, + }, + [sym_term] = { + .visible = true, + .named = true, + }, + [sym_factor] = { + .visible = true, + .named = true, + }, + [sym__parenthesized_expression] = { + .visible = false, + .named = true, + }, + [sym_primary] = { + .visible = true, + .named = true, + }, + [sym_allocator] = { + .visible = true, + .named = true, + }, + [sym_subtype_indication_paren_constraint] = { + .visible = true, + .named = true, + }, + [sym_subpool_specification] = { + .visible = true, + .named = true, + }, + [sym_access_type_definition] = { + .visible = true, + .named = true, + }, + [sym_access_to_object_definition] = { + .visible = true, + .named = true, + }, + [sym_general_access_modifier] = { + .visible = true, + .named = true, + }, + [sym_access_to_subprogram_definition] = { + .visible = true, + .named = true, + }, + [sym_access_definition] = { + .visible = true, + .named = true, + }, + [sym_actual_parameter_part] = { + .visible = true, + .named = true, + }, + [sym_parameter_association] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_conditional_quantified_expression] = { + .visible = true, + .named = true, + }, + [sym_quantified_expression] = { + .visible = true, + .named = true, + }, + [sym_declare_expression] = { + .visible = true, + .named = true, + }, + [sym_declare_item] = { + .visible = true, + .named = true, + }, + [sym_quantifier] = { + .visible = true, + .named = true, + }, + [sym_case_expression] = { + .visible = true, + .named = true, + }, + [sym_case_expression_alternative] = { + .visible = true, + .named = true, + }, + [sym_component_choice_list] = { + .visible = true, + .named = true, + }, + [sym_aggregate] = { + .visible = true, + .named = true, + }, + [sym_delta_aggregate] = { + .visible = true, + .named = true, + }, + [sym_extension_aggregate] = { + .visible = true, + .named = true, + }, + [sym_record_delta_aggregate] = { + .visible = true, + .named = true, + }, + [sym_array_delta_aggregate] = { + .visible = true, + .named = true, + }, + [sym_record_aggregate] = { + .visible = true, + .named = true, + }, + [sym_record_component_association_list] = { + .visible = true, + .named = true, + }, + [sym__named_record_component_association] = { + .visible = false, + .named = true, + }, + [sym_null_exclusion] = { + .visible = true, + .named = true, + }, + [sym_index_constraint] = { + .visible = true, + .named = true, + }, + [sym_digits_constraint] = { + .visible = true, + .named = true, + }, + [sym_delta_constraint] = { + .visible = true, + .named = true, + }, + [sym__basic_declarative_item_pragma] = { + .visible = false, + .named = true, + }, + [sym_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_full_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_private_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_private_extension_declaration] = { + .visible = true, + .named = true, + }, + [sym_discriminant_part] = { + .visible = true, + .named = true, + }, + [sym_unknown_discriminant_part] = { + .visible = true, + .named = true, + }, + [sym_known_discriminant_part] = { + .visible = true, + .named = true, + }, + [sym_incomplete_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_discriminant_specification_list] = { + .visible = true, + .named = true, + }, + [sym_discriminant_specification] = { + .visible = true, + .named = true, + }, + [sym_type_definition] = { + .visible = true, + .named = true, + }, + [sym_array_type_definition] = { + .visible = true, + .named = true, + }, + [sym_unconstrained_array_definition] = { + .visible = true, + .named = true, + }, + [sym_constrained_array_definition] = { + .visible = true, + .named = true, + }, + [sym__discrete_subtype_definition_list] = { + .visible = false, + .named = true, + }, + [sym_discrete_range] = { + .visible = true, + .named = true, + }, + [sym__index_subtype_definition_list] = { + .visible = false, + .named = true, + }, + [sym_index_subtype_definition] = { + .visible = true, + .named = true, + }, + [sym_enumeration_type_definition] = { + .visible = true, + .named = true, + }, + [sym__enumeration_literal_list] = { + .visible = false, + .named = true, + }, + [sym__enumeration_literal_specification] = { + .visible = false, + .named = true, + }, + [sym_integer_type_definition] = { + .visible = true, + .named = true, + }, + [sym_modular_type_definition] = { + .visible = true, + .named = true, + }, + [sym_real_type_definition] = { + .visible = true, + .named = true, + }, + [sym_floating_point_definition] = { + .visible = true, + .named = true, + }, + [sym_real_range_specification] = { + .visible = true, + .named = true, + }, + [sym_fixed_point_definition] = { + .visible = true, + .named = true, + }, + [sym_decimal_fixed_point_definition] = { + .visible = true, + .named = true, + }, + [sym_ordinary_fixed_point_definition] = { + .visible = true, + .named = true, + }, + [sym_signed_integer_type_definition] = { + .visible = true, + .named = true, + }, + [sym_derived_type_definition] = { + .visible = true, + .named = true, + }, + [sym_interface_type_definition] = { + .visible = true, + .named = true, + }, + [sym_interface_list] = { + .visible = true, + .named = true, + }, + [sym_record_extension_part] = { + .visible = true, + .named = true, + }, + [sym_record_type_definition] = { + .visible = true, + .named = true, + }, + [sym_record_definition] = { + .visible = true, + .named = true, + }, + [sym_component_list] = { + .visible = true, + .named = true, + }, + [sym_component_item] = { + .visible = true, + .named = true, + }, + [sym_component_declaration] = { + .visible = true, + .named = true, + }, + [sym_component_definition] = { + .visible = true, + .named = true, + }, + [sym_array_aggregate] = { + .visible = true, + .named = true, + }, + [sym_positional_array_aggregate] = { + .visible = true, + .named = true, + }, + [sym_null_array_aggregate] = { + .visible = true, + .named = true, + }, + [sym_named_array_aggregate] = { + .visible = true, + .named = true, + }, + [sym__array_component_association_list] = { + .visible = false, + .named = true, + }, + [sym_array_component_association] = { + .visible = true, + .named = true, + }, + [sym_discrete_choice_list] = { + .visible = true, + .named = true, + }, + [sym_discrete_choice] = { + .visible = true, + .named = true, + }, + [sym_aspect_association] = { + .visible = true, + .named = true, + }, + [sym_aspect_clause] = { + .visible = true, + .named = true, + }, + [sym_aspect_definition] = { + .visible = true, + .named = true, + }, + [sym_aspect_mark] = { + .visible = true, + .named = true, + }, + [sym_aspect_mark_list] = { + .visible = true, + .named = true, + }, + [sym_aspect_specification] = { + .visible = true, + .named = true, + }, + [sym_assign_value] = { + .visible = true, + .named = true, + }, + [sym_at_clause] = { + .visible = true, + .named = true, + }, + [sym_attribute_definition_clause] = { + .visible = true, + .named = true, + }, + [sym_body_stub] = { + .visible = true, + .named = true, + }, + [sym_subprogram_body_stub] = { + .visible = true, + .named = true, + }, + [sym_package_body_stub] = { + .visible = true, + .named = true, + }, + [sym_task_body] = { + .visible = true, + .named = true, + }, + [sym_task_body_stub] = { + .visible = true, + .named = true, + }, + [sym_protected_operation_declaration] = { + .visible = true, + .named = true, + }, + [sym_protected_element_declaration] = { + .visible = true, + .named = true, + }, + [sym_protected_operation_item] = { + .visible = true, + .named = true, + }, + [sym_protected_definition] = { + .visible = true, + .named = true, + }, + [sym_protected_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_single_protected_declaration] = { + .visible = true, + .named = true, + }, + [sym_protected_body] = { + .visible = true, + .named = true, + }, + [sym_protected_body_stub] = { + .visible = true, + .named = true, + }, + [sym_choice_parameter_specification] = { + .visible = true, + .named = true, + }, + [sym_component_clause] = { + .visible = true, + .named = true, + }, + [sym_declarative_item_pragma] = { + .visible = true, + .named = true, + }, + [sym_non_empty_declarative_part] = { + .visible = true, + .named = true, + }, + [sym_entry_declaration] = { + .visible = true, + .named = true, + }, + [sym_entry_body] = { + .visible = true, + .named = true, + }, + [sym_entry_barrier] = { + .visible = true, + .named = true, + }, + [sym_entry_index_specification] = { + .visible = true, + .named = true, + }, + [sym_enumeration_aggregate] = { + .visible = true, + .named = true, + }, + [sym_enumeration_representation_clause] = { + .visible = true, + .named = true, + }, + [sym_exception_choice_list] = { + .visible = true, + .named = true, + }, + [sym_exception_choice] = { + .visible = true, + .named = true, + }, + [sym_exception_declaration] = { + .visible = true, + .named = true, + }, + [sym_exception_handler] = { + .visible = true, + .named = true, + }, + [sym_exception_handler_list] = { + .visible = true, + .named = true, + }, + [sym_formal_part] = { + .visible = true, + .named = true, + }, + [sym_function_specification] = { + .visible = true, + .named = true, + }, + [sym_generic_declaration] = { + .visible = true, + .named = true, + }, + [sym_generic_formal_part] = { + .visible = true, + .named = true, + }, + [sym_generic_formal_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_generic_subprogram_declaration] = { + .visible = true, + .named = true, + }, + [sym_generic_package_declaration] = { + .visible = true, + .named = true, + }, + [sym_generic_instantiation] = { + .visible = true, + .named = true, + }, + [sym_formal_object_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_complete_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_incomplete_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_private_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_derived_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_discrete_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_signed_integer_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_modular_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_floating_point_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_ordinary_fixed_point_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_decimal_fixed_point_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_array_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_access_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_interface_type_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_subprogram_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_concrete_subprogram_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_abstract_subprogram_declaration] = { + .visible = true, + .named = true, + }, + [sym_subprogram_default] = { + .visible = true, + .named = true, + }, + [sym_formal_package_declaration] = { + .visible = true, + .named = true, + }, + [sym_formal_group_designator] = { + .visible = true, + .named = true, + }, + [sym_extended_global_aspect_definition] = { + .visible = true, + .named = true, + }, + [sym_dispatching_operation_specifier] = { + .visible = true, + .named = true, + }, + [sym_global_aspect_definition] = { + .visible = true, + .named = true, + }, + [sym_global_aspect_element] = { + .visible = true, + .named = true, + }, + [sym_global_mode] = { + .visible = true, + .named = true, + }, + [sym_global_set] = { + .visible = true, + .named = true, + }, + [sym_handled_sequence_of_statements] = { + .visible = true, + .named = true, + }, + [sym_loop_label] = { + .visible = true, + .named = true, + }, + [sym_label] = { + .visible = true, + .named = true, + }, + [sym_mod_clause] = { + .visible = true, + .named = true, + }, + [sym_non_empty_mode] = { + .visible = true, + .named = true, + }, + [sym_null_procedure_declaration] = { + .visible = true, + .named = true, + }, + [sym_null_statement] = { + .visible = true, + .named = true, + }, + [sym_number_declaration] = { + .visible = true, + .named = true, + }, + [sym_object_declaration] = { + .visible = true, + .named = true, + }, + [sym_single_task_declaration] = { + .visible = true, + .named = true, + }, + [sym_task_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_non_empty_entry_body_formal_part] = { + .visible = true, + .named = true, + }, + [sym_task_item] = { + .visible = true, + .named = true, + }, + [sym_task_definition] = { + .visible = true, + .named = true, + }, + [sym_overriding_indicator] = { + .visible = true, + .named = true, + }, + [sym_non_empty_parameter_profile] = { + .visible = true, + .named = true, + }, + [sym_parameter_and_result_profile] = { + .visible = true, + .named = true, + }, + [sym_parameter_specification] = { + .visible = true, + .named = true, + }, + [sym_parameter_specification_list] = { + .visible = true, + .named = true, + }, + [sym_pragma_g] = { + .visible = true, + .named = true, + }, + [sym_pragma_argument_association] = { + .visible = true, + .named = true, + }, + [sym_if_expression] = { + .visible = true, + .named = true, + }, + [sym_elsif_expression_item] = { + .visible = true, + .named = true, + }, + [sym_procedure_specification] = { + .visible = true, + .named = true, + }, + [sym_record_representation_clause] = { + .visible = true, + .named = true, + }, + [sym_renaming_declaration] = { + .visible = true, + .named = true, + }, + [sym_object_renaming_declaration] = { + .visible = true, + .named = true, + }, + [sym_exception_renaming_declaration] = { + .visible = true, + .named = true, + }, + [sym_package_renaming_declaration] = { + .visible = true, + .named = true, + }, + [sym_subprogram_renaming_declaration] = { + .visible = true, + .named = true, + }, + [sym_generic_renaming_declaration] = { + .visible = true, + .named = true, + }, + [sym_result_profile] = { + .visible = true, + .named = true, + }, + [sym_sequence_of_statements] = { + .visible = true, + .named = true, + }, + [sym_simple_statement] = { + .visible = true, + .named = true, + }, + [sym_statement] = { + .visible = true, + .named = true, + }, + [sym_compound_statement] = { + .visible = true, + .named = true, + }, + [sym_select_statement] = { + .visible = true, + .named = true, + }, + [sym_entry_call_alternative] = { + .visible = true, + .named = true, + }, + [sym_asynchronous_select] = { + .visible = true, + .named = true, + }, + [sym_triggering_alternative] = { + .visible = true, + .named = true, + }, + [sym_conditional_entry_call] = { + .visible = true, + .named = true, + }, + [sym_delay_alternative] = { + .visible = true, + .named = true, + }, + [sym_timed_entry_call] = { + .visible = true, + .named = true, + }, + [sym_guard] = { + .visible = true, + .named = true, + }, + [sym_guard_select] = { + .visible = true, + .named = true, + }, + [sym_select_alternative] = { + .visible = true, + .named = true, + }, + [sym_selective_accept] = { + .visible = true, + .named = true, + }, + [sym_abort_statement] = { + .visible = true, + .named = true, + }, + [sym_requeue_statement] = { + .visible = true, + .named = true, + }, + [sym_accept_statement] = { + .visible = true, + .named = true, + }, + [sym_case_statement_alternative] = { + .visible = true, + .named = true, + }, + [sym_case_statement] = { + .visible = true, + .named = true, + }, + [sym_block_statement] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_elsif_statement_item] = { + .visible = true, + .named = true, + }, + [sym_exit_statement] = { + .visible = true, + .named = true, + }, + [sym_goto_statement] = { + .visible = true, + .named = true, + }, + [sym_delay_statement] = { + .visible = true, + .named = true, + }, + [sym_delay_until_statement] = { + .visible = true, + .named = true, + }, + [sym_delay_relative_statement] = { + .visible = true, + .named = true, + }, + [sym_simple_return_statement] = { + .visible = true, + .named = true, + }, + [sym_extended_return_statement] = { + .visible = true, + .named = true, + }, + [sym_extended_return_object_declaration] = { + .visible = true, + .named = true, + }, + [sym_return_subtype_indication] = { + .visible = true, + .named = true, + }, + [sym_procedure_call_statement] = { + .visible = true, + .named = true, + }, + [sym_raise_statement] = { + .visible = true, + .named = true, + }, + [sym_loop_statement] = { + .visible = true, + .named = true, + }, + [sym_iteration_scheme] = { + .visible = true, + .named = true, + }, + [sym_assignment_statement] = { + .visible = true, + .named = true, + }, + [sym_subprogram_declaration] = { + .visible = true, + .named = true, + }, + [sym_expression_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_subprogram_specification] = { + .visible = true, + .named = true, + }, + [sym_subtype_declaration] = { + .visible = true, + .named = true, + }, + [sym_variant_part] = { + .visible = true, + .named = true, + }, + [sym_variant_list] = { + .visible = true, + .named = true, + }, + [sym_variant] = { + .visible = true, + .named = true, + }, + [aux_sym_compilation_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_name_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_defining_identifier_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_package_specification_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_expression_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_expression_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym_membership_choice_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_simple_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_term_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_actual_parameter_part_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_declare_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_component_choice_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_component_association_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_component_association_list_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_index_constraint_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_discriminant_specification_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__discrete_subtype_definition_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__index_subtype_definition_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__enumeration_literal_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_interface_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_component_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_positional_array_aggregate_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__array_component_association_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_discrete_choice_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_aspect_mark_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_protected_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_protected_definition_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_protected_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_non_empty_declarative_part_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_exception_choice_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_exception_handler_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_formal_part_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_global_aspect_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_task_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_specification_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pragma_g_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_representation_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_of_statements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_of_statements_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_selective_accept_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variant_list_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum { + field_abortable_part = 1, + field_condition = 2, + field_default_name = 3, + field_endname = 4, + field_entry_index = 5, + field_first_bit = 6, + field_formal_parameter_designator = 7, + field_is_abstract = 8, + field_is_all = 9, + field_is_limited = 10, + field_is_parallel = 11, + field_is_private = 12, + field_is_type = 13, + field_last_bit = 14, + field_name = 15, + field_names = 16, + field_parameter_profile = 17, + field_parent_unit_name = 18, + field_position = 19, + field_predicate = 20, + field_range_attribute_reference = 21, + field_statement_identifier = 22, + field_subtype_mark = 23, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_abortable_part] = "abortable_part", + [field_condition] = "condition", + [field_default_name] = "default_name", + [field_endname] = "endname", + [field_entry_index] = "entry_index", + [field_first_bit] = "first_bit", + [field_formal_parameter_designator] = "formal_parameter_designator", + [field_is_abstract] = "is_abstract", + [field_is_all] = "is_all", + [field_is_limited] = "is_limited", + [field_is_parallel] = "is_parallel", + [field_is_private] = "is_private", + [field_is_type] = "is_type", + [field_last_bit] = "last_bit", + [field_name] = "name", + [field_names] = "names", + [field_parameter_profile] = "parameter_profile", + [field_parent_unit_name] = "parent_unit_name", + [field_position] = "position", + [field_predicate] = "predicate", + [field_range_attribute_reference] = "range_attribute_reference", + [field_statement_identifier] = "statement_identifier", + [field_subtype_mark] = "subtype_mark", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 1}, + [6] = {.index = 5, .length = 1}, + [7] = {.index = 6, .length = 1}, + [8] = {.index = 7, .length = 2}, + [9] = {.index = 9, .length = 1}, + [10] = {.index = 10, .length = 2}, + [11] = {.index = 12, .length = 1}, + [12] = {.index = 13, .length = 1}, + [13] = {.index = 14, .length = 1}, + [14] = {.index = 15, .length = 2}, + [15] = {.index = 17, .length = 2}, + [16] = {.index = 19, .length = 2}, + [17] = {.index = 21, .length = 3}, + [18] = {.index = 24, .length = 1}, + [19] = {.index = 25, .length = 3}, + [20] = {.index = 28, .length = 1}, + [21] = {.index = 29, .length = 1}, + [22] = {.index = 30, .length = 1}, + [23] = {.index = 31, .length = 2}, + [24] = {.index = 33, .length = 1}, + [25] = {.index = 34, .length = 2}, + [26] = {.index = 36, .length = 1}, + [27] = {.index = 37, .length = 1}, + [28] = {.index = 38, .length = 2}, + [29] = {.index = 40, .length = 1}, + [30] = {.index = 41, .length = 1}, + [31] = {.index = 42, .length = 1}, + [32] = {.index = 43, .length = 2}, + [33] = {.index = 45, .length = 2}, + [34] = {.index = 47, .length = 1}, + [35] = {.index = 48, .length = 1}, + [36] = {.index = 49, .length = 2}, + [37] = {.index = 51, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_statement_identifier, 0}, + [1] = + {field_condition, 1}, + [2] = + {field_names, 1}, + [3] = + {field_subtype_mark, 0}, + [4] = + {field_statement_identifier, 1}, + [5] = + {field_is_parallel, 1}, + [6] = + {field_is_type, 1}, + [7] = + {field_is_private, 0}, + {field_names, 2}, + [9] = + {field_name, 1}, + [10] = + {field_is_limited, 0}, + {field_names, 2}, + [12] = + {field_subtype_mark, 1}, + [13] = + {field_parameter_profile, 2}, + [14] = + {field_condition, 2}, + [15] = + {field_is_abstract, 1}, + {field_is_abstract, 2}, + [17] = + {field_is_all, 1}, + {field_is_type, 2}, + [19] = + {field_endname, 4}, + {field_name, 1}, + [21] = + {field_is_limited, 0}, + {field_is_private, 1}, + {field_names, 3}, + [24] = + {field_parent_unit_name, 2}, + [25] = + {field_range_attribute_reference, 0}, + {field_range_attribute_reference, 1}, + {field_range_attribute_reference, 2}, + [28] = + {field_default_name, 0}, + [29] = + {field_condition, 3}, + [30] = + {field_parameter_profile, 3}, + [31] = + {field_is_abstract, 2}, + {field_is_abstract, 3}, + [33] = + {field_name, 2}, + [34] = + {field_endname, 5}, + {field_name, 1}, + [36] = + {field_entry_index, 3}, + [37] = + {field_formal_parameter_designator, 1}, + [38] = + {field_endname, 6}, + {field_name, 1}, + [40] = + {field_parameter_profile, 0}, + [41] = + {field_predicate, 4}, + [42] = + {field_parameter_profile, 5}, + [43] = + {field_entry_index, 3}, + {field_parameter_profile, 5}, + [45] = + {field_endname, 7}, + {field_name, 1}, + [47] = + {field_abortable_part, 4}, + [48] = + {field_parameter_profile, 6}, + [49] = + {field_endname, 8}, + {field_name, 1}, + [51] = + {field_first_bit, 4}, + {field_last_bit, 6}, + {field_position, 2}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 40, + [41] = 24, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 26, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 380, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 403, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 427, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 430, + [442] = 426, + [443] = 443, + [444] = 433, + [445] = 434, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 447, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 343, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 463, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 469, + [471] = 471, + [472] = 472, + [473] = 464, + [474] = 474, + [475] = 475, + [476] = 449, + [477] = 451, + [478] = 452, + [479] = 457, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 488, + [491] = 491, + [492] = 489, + [493] = 491, + [494] = 483, + [495] = 495, + [496] = 481, + [497] = 484, + [498] = 495, + [499] = 485, + [500] = 480, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 507, + [509] = 509, + [510] = 505, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 439, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 343, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 511, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 549, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 745, + [779] = 779, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 554, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 571, + [823] = 573, + [824] = 575, + [825] = 572, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 596, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 598, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 595, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 592, + [938] = 938, + [939] = 939, + [940] = 588, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 597, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1342, + [1343] = 1343, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 1666, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1672, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 1693, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 1705, + [1706] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, + [1719] = 1719, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1739, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1785, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1789, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 1797, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 1804, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 1850, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1856, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 1573, + [1880] = 1880, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(31); + if (lookahead == '"') ADVANCE(11); + if (lookahead == '&') ADVANCE(58); + if (lookahead == '\'') ADVANCE(63); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(64); + if (lookahead == '/') ADVANCE(61); + if (lookahead == ':') ADVANCE(72); + if (lookahead == ';') ADVANCE(78); + if (lookahead == '<') ADVANCE(50); + if (lookahead == '=') ADVANCE(48); + if (lookahead == '>') ADVANCE(54); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(69); + if (lookahead == '\\') SKIP(27) + if (lookahead == ']') ADVANCE(70); + if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == 'n') ADVANCE(38); + if (lookahead == '|') ADVANCE(75); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead != 0 && + lookahead > '?' && + (lookahead < '^' || '`' < lookahead) && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(13) + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(13) + if (lookahead == '\r') SKIP(1) + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(14) + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(14) + if (lookahead == '\r') SKIP(3) + END_STATE(); + case 5: + if (lookahead == '\n') SKIP(9) + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(9) + if (lookahead == '\r') SKIP(5) + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(10) + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(10) + if (lookahead == '\r') SKIP(7) + END_STATE(); + case 9: + if (lookahead == '"') ADVANCE(11); + if (lookahead == '&') ADVANCE(58); + if (lookahead == '\'') ADVANCE(25); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(59); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(17); + if (lookahead == '/') ADVANCE(61); + if (lookahead == ';') ADVANCE(78); + if (lookahead == '<') ADVANCE(51); + if (lookahead == '=') ADVANCE(48); + if (lookahead == '>') ADVANCE(53); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(69); + if (lookahead == '\\') SKIP(6) + if (lookahead == ']') ADVANCE(70); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == '|') ADVANCE(75); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) + if (lookahead != 0 && + lookahead > '?' && + (lookahead < '^' || '`' < lookahead) && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 10: + if (lookahead == '"') ADVANCE(11); + if (lookahead == '\'') ADVANCE(25); + if (lookahead == '-') ADVANCE(16); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(69); + if (lookahead == '\\') SKIP(8) + if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'n') ADVANCE(38); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (lookahead != 0 && + lookahead > '?' && + (lookahead < ']' || '`' < lookahead) && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(41); + if (lookahead != 0) ADVANCE(11); + END_STATE(); + case 12: + if (lookahead == '#') ADVANCE(43); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(12); + END_STATE(); + case 13: + if (lookahead == '&') ADVANCE(58); + if (lookahead == '\'') ADVANCE(63); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(64); + if (lookahead == '/') ADVANCE(61); + if (lookahead == ':') ADVANCE(72); + if (lookahead == ';') ADVANCE(73); + if (lookahead == '<') ADVANCE(51); + if (lookahead == '=') ADVANCE(48); + if (lookahead == '>') ADVANCE(53); + if (lookahead == '\\') SKIP(2) + if (lookahead == ']') ADVANCE(70); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == '|') ADVANCE(75); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (lookahead != 0 && + lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 14: + if (lookahead == '&') ADVANCE(58); + if (lookahead == '\'') ADVANCE(63); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(64); + if (lookahead == '/') ADVANCE(19); + if (lookahead == ':') ADVANCE(72); + if (lookahead == ';') ADVANCE(73); + if (lookahead == '<') ADVANCE(51); + if (lookahead == '=') ADVANCE(48); + if (lookahead == '>') ADVANCE(53); + if (lookahead == '\\') SKIP(4) + if (lookahead == ']') ADVANCE(70); + if (lookahead == '|') ADVANCE(75); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) + if (lookahead != 0 && + lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 15: + if (lookahead == '\'') ADVANCE(42); + END_STATE(); + case 16: + if (lookahead == '-') ADVANCE(40); + END_STATE(); + case 17: + if (lookahead == '.') ADVANCE(74); + END_STATE(); + case 18: + if (lookahead == '<') ADVANCE(82); + if (lookahead == '>') ADVANCE(77); + END_STATE(); + case 19: + if (lookahead == '=') ADVANCE(49); + END_STATE(); + case 20: + if (lookahead == '>') ADVANCE(71); + END_STATE(); + case 21: + if (lookahead == '>') ADVANCE(83); + END_STATE(); + case 22: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); + END_STATE(); + case 23: + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(47); + END_STATE(); + case 24: + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(12); + END_STATE(); + case 25: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(15); + END_STATE(); + case 26: + if (eof) ADVANCE(31); + if (lookahead == '\n') SKIP(0) + END_STATE(); + case 27: + if (eof) ADVANCE(31); + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(26) + END_STATE(); + case 28: + if (eof) ADVANCE(31); + if (lookahead == '\n') SKIP(30) + END_STATE(); + case 29: + if (eof) ADVANCE(31); + if (lookahead == '\n') SKIP(30) + if (lookahead == '\r') SKIP(28) + END_STATE(); + case 30: + if (eof) ADVANCE(31); + if (lookahead == '"') ADVANCE(11); + if (lookahead == '\'') ADVANCE(25); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(17); + if (lookahead == ':') ADVANCE(72); + if (lookahead == ';') ADVANCE(73); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(21); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(69); + if (lookahead == '\\') SKIP(29) + if (lookahead == ']') ADVANCE(70); + if (lookahead == '|') ADVANCE(75); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead != 0 && + lookahead > '?' && + (lookahead < '^' || '`' < lookahead) && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 31: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 32: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(62); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 33: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(81); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 34: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(80); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 35: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(33); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 36: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(34); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 37: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(32); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 38: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(36); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 39: + ACCEPT_TOKEN(sym_identifier); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 40: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(40); + END_STATE(); + case 41: + ACCEPT_TOKEN(sym_string_literal); + END_STATE(); + case 42: + ACCEPT_TOKEN(sym_character_literal); + END_STATE(); + case 43: + ACCEPT_TOKEN(sym_numeric_literal); + END_STATE(); + case 44: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '#') ADVANCE(24); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '_') ADVANCE(45); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + END_STATE(); + case 45: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '.') ADVANCE(22); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(45); + END_STATE(); + case 46: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); + END_STATE(); + case 47: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(47); + END_STATE(); + case 48: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(71); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(52); + if (lookahead == '>') ADVANCE(77); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(52); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(55); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(83); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(40); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(76); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(49); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_mod); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(74); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(79); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 78: + ACCEPT_TOKEN(aux_sym_component_list_token1); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_null); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_all); + if (lookahead != 0 && + lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 127 < lookahead)) ADVANCE(39); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'R') ADVANCE(1); + if (lookahead == '\\') SKIP(2) + if (lookahead == 'r') ADVANCE(3); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(5); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(6); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(7); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(8); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(9); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(10); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(11); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(12); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(13); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(14); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(15); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(16); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(17); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(18); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(19); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(20); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(21); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(22); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(23); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(24) + END_STATE(); + case 3: + if (lookahead == 'E') ADVANCE(23); + if (lookahead == 'e') ADVANCE(25); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(22); + END_STATE(); + case 4: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(26); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(27); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(28); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(29); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(30); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(31); + END_STATE(); + case 5: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(32); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(33); + END_STATE(); + case 6: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(34); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(35); + END_STATE(); + case 7: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(36); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(37); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(38); + END_STATE(); + case 8: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(39); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(40); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(41); + END_STATE(); + case 9: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(42); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(43); + END_STATE(); + case 10: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(45); + END_STATE(); + case 11: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(46); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(47); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(48); + END_STATE(); + case 12: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(49); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(50); + END_STATE(); + case 13: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(51); + END_STATE(); + case 14: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(52); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(53); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(54); + END_STATE(); + case 15: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(55); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(56); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(57); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(58); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(59); + END_STATE(); + case 16: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(60); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(61); + END_STATE(); + case 17: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(62); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(63); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(64); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(65); + END_STATE(); + case 18: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(66); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(67); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(68); + END_STATE(); + case 19: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(69); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(70); + END_STATE(); + case 20: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(71); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(72); + END_STATE(); + case 21: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(73); + END_STATE(); + case 22: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(74); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(75); + END_STATE(); + case 23: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(76); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(77); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(78); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(79); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(80); + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(0) + END_STATE(); + case 25: + if (lookahead == 'm') ADVANCE(81); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(76); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(77); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(78); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(79); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(80); + END_STATE(); + case 26: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(82); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(83); + END_STATE(); + case 27: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(84); + END_STATE(); + case 28: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(85); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(86); + END_STATE(); + case 29: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(87); + END_STATE(); + case 30: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(88); + END_STATE(); + case 31: + ACCEPT_TOKEN(aux_sym_at_clause_token1); + END_STATE(); + case 32: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(89); + END_STATE(); + case 33: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(90); + END_STATE(); + case 34: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(91); + END_STATE(); + case 35: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(92); + END_STATE(); + case 36: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(93); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(94); + END_STATE(); + case 37: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(95); + END_STATE(); + case 38: + ACCEPT_TOKEN(aux_sym_extended_global_aspect_definition_token1); + END_STATE(); + case 39: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(96); + END_STATE(); + case 40: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(97); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(98); + END_STATE(); + case 41: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(99); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(100); + END_STATE(); + case 42: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(101); + END_STATE(); + case 43: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(102); + END_STATE(); + case 44: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(103); + END_STATE(); + case 45: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(104); + END_STATE(); + case 46: + ACCEPT_TOKEN(aux_sym_if_expression_token1); + END_STATE(); + case 47: + ACCEPT_TOKEN(aux_sym_chunk_specification_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(105); + END_STATE(); + case 48: + ACCEPT_TOKEN(aux_sym_package_specification_token2); + END_STATE(); + case 49: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(106); + END_STATE(); + case 50: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(107); + END_STATE(); + case 51: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(108); + END_STATE(); + case 52: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(109); + END_STATE(); + case 53: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(110); + END_STATE(); + case 54: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(111); + END_STATE(); + case 55: + ACCEPT_TOKEN(aux_sym_iterator_specification_token1); + END_STATE(); + case 56: + ACCEPT_TOKEN(aux_sym_expression_token3); + END_STATE(); + case 57: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(112); + END_STATE(); + case 58: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(113); + END_STATE(); + case 59: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(114); + END_STATE(); + case 60: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(115); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(116); + END_STATE(); + case 61: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(117); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(118); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(119); + END_STATE(); + case 62: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(120); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(121); + END_STATE(); + case 63: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(122); + END_STATE(); + case 64: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(123); + END_STATE(); + case 65: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(124); + END_STATE(); + case 66: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(125); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(126); + END_STATE(); + case 67: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(127); + END_STATE(); + case 68: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(128); + END_STATE(); + case 69: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(129); + END_STATE(); + case 70: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(130); + END_STATE(); + case 71: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(131); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(132); + END_STATE(); + case 72: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(133); + END_STATE(); + case 73: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(134); + END_STATE(); + case 74: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(135); + END_STATE(); + case 75: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(136); + END_STATE(); + case 76: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(137); + END_STATE(); + case 77: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(138); + END_STATE(); + case 78: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(139); + END_STATE(); + case 79: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(140); + END_STATE(); + case 80: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(141); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_rem); + END_STATE(); + case 82: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(142); + END_STATE(); + case 83: + ACCEPT_TOKEN(aux_sym_factor_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(143); + END_STATE(); + case 84: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(144); + END_STATE(); + case 85: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(145); + END_STATE(); + case 86: + ACCEPT_TOKEN(aux_sym_use_clause_token1); + END_STATE(); + case 87: + ACCEPT_TOKEN(aux_sym_expression_token1); + END_STATE(); + case 88: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(146); + END_STATE(); + case 89: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(147); + END_STATE(); + case 90: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(148); + END_STATE(); + case 91: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(149); + END_STATE(); + case 92: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(150); + END_STATE(); + case 93: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(151); + END_STATE(); + case 94: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(152); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(153); + END_STATE(); + case 95: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(154); + END_STATE(); + case 96: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(155); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(156); + END_STATE(); + case 97: + ACCEPT_TOKEN(aux_sym_package_specification_token3); + END_STATE(); + case 98: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(157); + END_STATE(); + case 99: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(158); + END_STATE(); + case 100: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(159); + END_STATE(); + case 101: + ACCEPT_TOKEN(aux_sym_iterated_element_association_token1); + END_STATE(); + case 102: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(160); + END_STATE(); + case 103: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(161); + END_STATE(); + case 104: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(162); + END_STATE(); + case 105: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(163); + END_STATE(); + case 106: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(164); + END_STATE(); + case 107: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(165); + END_STATE(); + case 108: + ACCEPT_TOKEN(aux_sym_attribute_designator_token4); + END_STATE(); + case 109: + ACCEPT_TOKEN(aux_sym_allocator_token1); + END_STATE(); + case 110: + ACCEPT_TOKEN(aux_sym_relation_token1); + END_STATE(); + case 111: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(166); + END_STATE(); + case 112: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(167); + END_STATE(); + case 113: + ACCEPT_TOKEN(aux_sym_non_empty_mode_token1); + END_STATE(); + case 114: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(168); + END_STATE(); + case 115: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(169); + END_STATE(); + case 116: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(170); + END_STATE(); + case 117: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(171); + END_STATE(); + case 118: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(172); + END_STATE(); + case 119: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(173); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(174); + END_STATE(); + case 120: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(175); + END_STATE(); + case 121: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(176); + END_STATE(); + case 122: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(177); + END_STATE(); + case 123: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(178); + END_STATE(); + case 124: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(179); + END_STATE(); + case 125: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(180); + END_STATE(); + case 126: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(181); + END_STATE(); + case 127: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(182); + END_STATE(); + case 128: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(183); + END_STATE(); + case 129: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(184); + END_STATE(); + case 130: + ACCEPT_TOKEN(aux_sym_iterated_element_association_token2); + END_STATE(); + case 131: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(185); + END_STATE(); + case 132: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(186); + END_STATE(); + case 133: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(187); + END_STATE(); + case 134: + ACCEPT_TOKEN(aux_sym_expression_token5); + END_STATE(); + case 135: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(188); + END_STATE(); + case 136: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(189); + END_STATE(); + case 137: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(190); + END_STATE(); + case 138: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(191); + END_STATE(); + case 139: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(192); + END_STATE(); + case 140: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(193); + END_STATE(); + case 141: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(194); + END_STATE(); + case 142: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(195); + END_STATE(); + case 143: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(196); + END_STATE(); + case 144: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(197); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(198); + END_STATE(); + case 145: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(199); + END_STATE(); + case 146: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(200); + END_STATE(); + case 147: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(201); + END_STATE(); + case 148: + ACCEPT_TOKEN(aux_sym_package_body_token1); + END_STATE(); + case 149: + ACCEPT_TOKEN(aux_sym_case_expression_token1); + END_STATE(); + case 150: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(202); + END_STATE(); + case 151: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(203); + END_STATE(); + case 152: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(204); + END_STATE(); + case 153: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(205); + END_STATE(); + case 154: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(206); + END_STATE(); + case 155: + ACCEPT_TOKEN(aux_sym_expression_token4); + END_STATE(); + case 156: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(207); + END_STATE(); + case 157: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(208); + END_STATE(); + case 158: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(209); + END_STATE(); + case 159: + ACCEPT_TOKEN(aux_sym_exit_statement_token1); + END_STATE(); + case 160: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(210); + END_STATE(); + case 161: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(211); + END_STATE(); + case 162: + ACCEPT_TOKEN(aux_sym_goto_statement_token1); + END_STATE(); + case 163: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(212); + END_STATE(); + case 164: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(213); + END_STATE(); + case 165: + ACCEPT_TOKEN(aux_sym_loop_statement_token1); + END_STATE(); + case 166: + ACCEPT_TOKEN(aux_sym_primary_token1); + END_STATE(); + case 167: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(214); + END_STATE(); + case 168: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(215); + END_STATE(); + case 169: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(216); + END_STATE(); + case 170: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(217); + END_STATE(); + case 171: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(218); + END_STATE(); + case 172: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(219); + END_STATE(); + case 173: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(220); + END_STATE(); + case 174: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(221); + END_STATE(); + case 175: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(222); + END_STATE(); + case 176: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(223); + END_STATE(); + case 177: + ACCEPT_TOKEN(aux_sym_quantifier_token1); + END_STATE(); + case 178: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(224); + END_STATE(); + case 179: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(225); + END_STATE(); + case 180: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(226); + END_STATE(); + case 181: + ACCEPT_TOKEN(aux_sym_interface_type_definition_token1); + END_STATE(); + case 182: + ACCEPT_TOKEN(aux_sym_expression_token2); + END_STATE(); + case 183: + ACCEPT_TOKEN(aux_sym_use_clause_token2); + END_STATE(); + case 184: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(227); + END_STATE(); + case 185: + ACCEPT_TOKEN(aux_sym_iterator_filter_token1); + END_STATE(); + case 186: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(228); + END_STATE(); + case 187: + ACCEPT_TOKEN(aux_sym_with_clause_token2); + END_STATE(); + case 188: + ACCEPT_TOKEN(aux_sym_raise_expression_token1); + END_STATE(); + case 189: + ACCEPT_TOKEN(aux_sym_range_attribute_designator_token1); + END_STATE(); + case 190: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(229); + END_STATE(); + case 191: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(230); + END_STATE(); + case 192: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(231); + END_STATE(); + case 193: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + END_STATE(); + case 194: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(233); + END_STATE(); + case 195: + ACCEPT_TOKEN(aux_sym_asynchronous_select_token2); + END_STATE(); + case 196: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(234); + END_STATE(); + case 197: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(235); + END_STATE(); + case 198: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(236); + END_STATE(); + case 199: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(237); + END_STATE(); + case 200: + ACCEPT_TOKEN(aux_sym_unconstrained_array_definition_token1); + END_STATE(); + case 201: + ACCEPT_TOKEN(aux_sym_subprogram_body_token1); + END_STATE(); + case 202: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(238); + END_STATE(); + case 203: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(239); + END_STATE(); + case 204: + ACCEPT_TOKEN(aux_sym_delay_until_statement_token1); + END_STATE(); + case 205: + ACCEPT_TOKEN(aux_sym_attribute_designator_token2); + END_STATE(); + case 206: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(240); + END_STATE(); + case 207: + ACCEPT_TOKEN(aux_sym_elsif_expression_item_token1); + END_STATE(); + case 208: + ACCEPT_TOKEN(aux_sym_entry_declaration_token1); + END_STATE(); + case 209: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(241); + END_STATE(); + case 210: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(242); + END_STATE(); + case 211: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(243); + END_STATE(); + case 212: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(244); + END_STATE(); + case 213: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(245); + END_STATE(); + case 214: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(246); + END_STATE(); + case 215: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(247); + END_STATE(); + case 216: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(248); + END_STATE(); + case 217: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(249); + END_STATE(); + case 218: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(250); + END_STATE(); + case 219: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(251); + END_STATE(); + case 220: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(252); + END_STATE(); + case 221: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(253); + END_STATE(); + case 222: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(254); + END_STATE(); + case 223: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(255); + END_STATE(); + case 224: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(256); + END_STATE(); + case 225: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(257); + END_STATE(); + case 226: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(258); + END_STATE(); + case 227: + ACCEPT_TOKEN(aux_sym_delay_until_statement_token2); + END_STATE(); + case 228: + ACCEPT_TOKEN(aux_sym_iteration_scheme_token1); + END_STATE(); + case 229: + ACCEPT_TOKEN(aux_sym_record_component_association_list_token1); + END_STATE(); + case 230: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + END_STATE(); + case 231: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(260); + END_STATE(); + case 232: + ACCEPT_TOKEN(aux_sym_result_profile_token1); + END_STATE(); + case 233: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(261); + END_STATE(); + case 234: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(262); + END_STATE(); + case 235: + ACCEPT_TOKEN(aux_sym_accept_statement_token1); + END_STATE(); + case 236: + ACCEPT_TOKEN(aux_sym_attribute_designator_token1); + END_STATE(); + case 237: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(263); + END_STATE(); + case 238: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(264); + END_STATE(); + case 239: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(265); + END_STATE(); + case 240: + ACCEPT_TOKEN(aux_sym_attribute_designator_token3); + END_STATE(); + case 241: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(266); + END_STATE(); + case 242: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(267); + END_STATE(); + case 243: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(268); + END_STATE(); + case 244: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(269); + END_STATE(); + case 245: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(270); + END_STATE(); + case 246: + ACCEPT_TOKEN(aux_sym_positional_array_aggregate_token1); + END_STATE(); + case 247: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(271); + END_STATE(); + case 248: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(272); + END_STATE(); + case 249: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(273); + END_STATE(); + case 250: + ACCEPT_TOKEN(aux_sym_pragma_g_token1); + END_STATE(); + case 251: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(274); + END_STATE(); + case 252: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(275); + END_STATE(); + case 253: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(276); + END_STATE(); + case 254: + ACCEPT_TOKEN(aux_sym_asynchronous_select_token1); + END_STATE(); + case 255: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(277); + END_STATE(); + case 256: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(278); + END_STATE(); + case 257: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(279); + END_STATE(); + case 258: + ACCEPT_TOKEN(aux_sym_private_type_declaration_token2); + END_STATE(); + case 259: + ACCEPT_TOKEN(aux_sym_object_renaming_declaration_token1); + END_STATE(); + case 260: + ACCEPT_TOKEN(aux_sym_requeue_statement_token1); + END_STATE(); + case 261: + ACCEPT_TOKEN(aux_sym_loop_parameter_specification_token1); + END_STATE(); + case 262: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(280); + END_STATE(); + case 263: + ACCEPT_TOKEN(aux_sym_component_definition_token1); + END_STATE(); + case 264: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(281); + END_STATE(); + case 265: + ACCEPT_TOKEN(aux_sym_declare_expression_token1); + END_STATE(); + case 266: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(282); + END_STATE(); + case 267: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(283); + END_STATE(); + case 268: + ACCEPT_TOKEN(aux_sym_generic_formal_part_token1); + END_STATE(); + case 269: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(284); + END_STATE(); + case 270: + ACCEPT_TOKEN(aux_sym_with_clause_token1); + END_STATE(); + case 271: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(285); + END_STATE(); + case 272: + ACCEPT_TOKEN(aux_sym_package_specification_token1); + END_STATE(); + case 273: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(286); + END_STATE(); + case 274: + ACCEPT_TOKEN(aux_sym_compilation_unit_token1); + END_STATE(); + case 275: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(287); + END_STATE(); + case 276: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(288); + END_STATE(); + case 277: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(289); + END_STATE(); + case 278: + ACCEPT_TOKEN(aux_sym_subtype_declaration_token1); + END_STATE(); + case 279: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(290); + END_STATE(); + case 280: + ACCEPT_TOKEN(aux_sym_private_type_declaration_token1); + END_STATE(); + case 281: + ACCEPT_TOKEN(aux_sym_general_access_modifier_token1); + END_STATE(); + case 282: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(291); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym_access_to_subprogram_definition_token2); + END_STATE(); + case 284: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(292); + END_STATE(); + case 285: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(293); + END_STATE(); + case 286: + ACCEPT_TOKEN(aux_sym_value_sequence_token1); + END_STATE(); + case 287: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(294); + END_STATE(); + case 288: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(295); + END_STATE(); + case 289: + ACCEPT_TOKEN(aux_sym_subunit_token1); + END_STATE(); + case 290: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(296); + END_STATE(); + case 291: + ACCEPT_TOKEN(aux_sym_exception_declaration_token1); + END_STATE(); + case 292: + ACCEPT_TOKEN(aux_sym_interface_type_definition_token2); + END_STATE(); + case 293: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(297); + END_STATE(); + case 294: + ACCEPT_TOKEN(aux_sym_access_to_subprogram_definition_token1); + END_STATE(); + case 295: + ACCEPT_TOKEN(aux_sym_access_type_definition_token1); + END_STATE(); + case 296: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(298); + END_STATE(); + case 297: + ACCEPT_TOKEN(aux_sym_global_mode_token1); + END_STATE(); + case 298: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(299); + END_STATE(); + case 299: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(300); + END_STATE(); + case 300: + ACCEPT_TOKEN(aux_sym_private_extension_declaration_token1); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 30}, + [2] = {.lex_state = 30}, + [3] = {.lex_state = 30}, + [4] = {.lex_state = 30}, + [5] = {.lex_state = 30}, + [6] = {.lex_state = 30}, + [7] = {.lex_state = 30}, + [8] = {.lex_state = 30}, + [9] = {.lex_state = 30}, + [10] = {.lex_state = 30}, + [11] = {.lex_state = 30}, + [12] = {.lex_state = 30}, + [13] = {.lex_state = 30}, + [14] = {.lex_state = 30}, + [15] = {.lex_state = 30}, + [16] = {.lex_state = 30}, + [17] = {.lex_state = 30}, + [18] = {.lex_state = 30}, + [19] = {.lex_state = 30}, + [20] = {.lex_state = 30}, + [21] = {.lex_state = 30}, + [22] = {.lex_state = 30}, + [23] = {.lex_state = 30}, + [24] = {.lex_state = 30}, + [25] = {.lex_state = 30}, + [26] = {.lex_state = 30}, + [27] = {.lex_state = 30}, + [28] = {.lex_state = 30}, + [29] = {.lex_state = 30}, + [30] = {.lex_state = 30}, + [31] = {.lex_state = 30}, + [32] = {.lex_state = 30}, + [33] = {.lex_state = 30}, + [34] = {.lex_state = 30}, + [35] = {.lex_state = 30}, + [36] = {.lex_state = 30}, + [37] = {.lex_state = 30}, + [38] = {.lex_state = 30}, + [39] = {.lex_state = 30}, + [40] = {.lex_state = 30}, + [41] = {.lex_state = 30}, + [42] = {.lex_state = 30}, + [43] = {.lex_state = 30}, + [44] = {.lex_state = 30}, + [45] = {.lex_state = 30}, + [46] = {.lex_state = 30}, + [47] = {.lex_state = 30}, + [48] = {.lex_state = 30}, + [49] = {.lex_state = 30}, + [50] = {.lex_state = 30}, + [51] = {.lex_state = 30}, + [52] = {.lex_state = 30}, + [53] = {.lex_state = 30}, + [54] = {.lex_state = 30}, + [55] = {.lex_state = 30}, + [56] = {.lex_state = 30}, + [57] = {.lex_state = 30}, + [58] = {.lex_state = 30}, + [59] = {.lex_state = 30}, + [60] = {.lex_state = 30}, + [61] = {.lex_state = 30}, + [62] = {.lex_state = 30}, + [63] = {.lex_state = 30}, + [64] = {.lex_state = 30}, + [65] = {.lex_state = 30}, + [66] = {.lex_state = 30}, + [67] = {.lex_state = 30}, + [68] = {.lex_state = 30}, + [69] = {.lex_state = 30}, + [70] = {.lex_state = 30}, + [71] = {.lex_state = 30}, + [72] = {.lex_state = 30}, + [73] = {.lex_state = 30}, + [74] = {.lex_state = 30}, + [75] = {.lex_state = 30}, + [76] = {.lex_state = 30}, + [77] = {.lex_state = 30}, + [78] = {.lex_state = 30}, + [79] = {.lex_state = 30}, + [80] = {.lex_state = 30}, + [81] = {.lex_state = 30}, + [82] = {.lex_state = 30}, + [83] = {.lex_state = 30}, + [84] = {.lex_state = 30}, + [85] = {.lex_state = 30}, + [86] = {.lex_state = 30}, + [87] = {.lex_state = 30}, + [88] = {.lex_state = 30}, + [89] = {.lex_state = 30}, + [90] = {.lex_state = 30}, + [91] = {.lex_state = 30}, + [92] = {.lex_state = 30}, + [93] = {.lex_state = 30}, + [94] = {.lex_state = 30}, + [95] = {.lex_state = 30}, + [96] = {.lex_state = 30}, + [97] = {.lex_state = 30}, + [98] = {.lex_state = 30}, + [99] = {.lex_state = 30}, + [100] = {.lex_state = 30}, + [101] = {.lex_state = 30}, + [102] = {.lex_state = 30}, + [103] = {.lex_state = 30}, + [104] = {.lex_state = 30}, + [105] = {.lex_state = 30}, + [106] = {.lex_state = 30}, + [107] = {.lex_state = 30}, + [108] = {.lex_state = 30}, + [109] = {.lex_state = 30}, + [110] = {.lex_state = 30}, + [111] = {.lex_state = 30}, + [112] = {.lex_state = 30}, + [113] = {.lex_state = 30}, + [114] = {.lex_state = 30}, + [115] = {.lex_state = 30}, + [116] = {.lex_state = 30}, + [117] = {.lex_state = 30}, + [118] = {.lex_state = 30}, + [119] = {.lex_state = 30}, + [120] = {.lex_state = 30}, + [121] = {.lex_state = 30}, + [122] = {.lex_state = 30}, + [123] = {.lex_state = 30}, + [124] = {.lex_state = 30}, + [125] = {.lex_state = 30}, + [126] = {.lex_state = 30}, + [127] = {.lex_state = 30}, + [128] = {.lex_state = 30}, + [129] = {.lex_state = 30}, + [130] = {.lex_state = 30}, + [131] = {.lex_state = 30}, + [132] = {.lex_state = 30}, + [133] = {.lex_state = 30}, + [134] = {.lex_state = 30}, + [135] = {.lex_state = 30}, + [136] = {.lex_state = 30}, + [137] = {.lex_state = 30}, + [138] = {.lex_state = 30}, + [139] = {.lex_state = 30}, + [140] = {.lex_state = 30}, + [141] = {.lex_state = 30}, + [142] = {.lex_state = 30}, + [143] = {.lex_state = 30}, + [144] = {.lex_state = 30}, + [145] = {.lex_state = 30}, + [146] = {.lex_state = 30}, + [147] = {.lex_state = 30}, + [148] = {.lex_state = 30}, + [149] = {.lex_state = 30}, + [150] = {.lex_state = 30}, + [151] = {.lex_state = 30}, + [152] = {.lex_state = 30}, + [153] = {.lex_state = 30}, + [154] = {.lex_state = 30}, + [155] = {.lex_state = 30}, + [156] = {.lex_state = 30}, + [157] = {.lex_state = 30}, + [158] = {.lex_state = 30}, + [159] = {.lex_state = 30}, + [160] = {.lex_state = 30}, + [161] = {.lex_state = 30}, + [162] = {.lex_state = 30}, + [163] = {.lex_state = 13}, + [164] = {.lex_state = 30}, + [165] = {.lex_state = 30}, + [166] = {.lex_state = 13}, + [167] = {.lex_state = 30}, + [168] = {.lex_state = 13}, + [169] = {.lex_state = 13}, + [170] = {.lex_state = 13}, + [171] = {.lex_state = 13}, + [172] = {.lex_state = 13}, + [173] = {.lex_state = 13}, + [174] = {.lex_state = 13}, + [175] = {.lex_state = 13}, + [176] = {.lex_state = 13}, + [177] = {.lex_state = 13}, + [178] = {.lex_state = 13}, + [179] = {.lex_state = 13}, + [180] = {.lex_state = 13}, + [181] = {.lex_state = 13}, + [182] = {.lex_state = 13}, + [183] = {.lex_state = 13}, + [184] = {.lex_state = 13}, + [185] = {.lex_state = 13}, + [186] = {.lex_state = 13}, + [187] = {.lex_state = 13}, + [188] = {.lex_state = 13}, + [189] = {.lex_state = 13}, + [190] = {.lex_state = 13}, + [191] = {.lex_state = 13}, + [192] = {.lex_state = 30}, + [193] = {.lex_state = 13}, + [194] = {.lex_state = 13}, + [195] = {.lex_state = 13}, + [196] = {.lex_state = 30}, + [197] = {.lex_state = 13}, + [198] = {.lex_state = 30}, + [199] = {.lex_state = 30}, + [200] = {.lex_state = 30}, + [201] = {.lex_state = 13}, + [202] = {.lex_state = 30}, + [203] = {.lex_state = 30}, + [204] = {.lex_state = 30}, + [205] = {.lex_state = 30}, + [206] = {.lex_state = 30}, + [207] = {.lex_state = 30}, + [208] = {.lex_state = 30}, + [209] = {.lex_state = 30}, + [210] = {.lex_state = 30}, + [211] = {.lex_state = 30}, + [212] = {.lex_state = 30}, + [213] = {.lex_state = 30}, + [214] = {.lex_state = 30}, + [215] = {.lex_state = 30}, + [216] = {.lex_state = 30}, + [217] = {.lex_state = 30}, + [218] = {.lex_state = 30}, + [219] = {.lex_state = 30}, + [220] = {.lex_state = 30}, + [221] = {.lex_state = 30}, + [222] = {.lex_state = 30}, + [223] = {.lex_state = 30}, + [224] = {.lex_state = 30}, + [225] = {.lex_state = 30}, + [226] = {.lex_state = 30}, + [227] = {.lex_state = 30}, + [228] = {.lex_state = 30}, + [229] = {.lex_state = 30}, + [230] = {.lex_state = 30}, + [231] = {.lex_state = 30}, + [232] = {.lex_state = 30}, + [233] = {.lex_state = 30}, + [234] = {.lex_state = 30}, + [235] = {.lex_state = 30}, + [236] = {.lex_state = 30}, + [237] = {.lex_state = 30}, + [238] = {.lex_state = 30}, + [239] = {.lex_state = 30}, + [240] = {.lex_state = 30}, + [241] = {.lex_state = 30}, + [242] = {.lex_state = 30}, + [243] = {.lex_state = 30}, + [244] = {.lex_state = 30}, + [245] = {.lex_state = 30}, + [246] = {.lex_state = 30}, + [247] = {.lex_state = 30}, + [248] = {.lex_state = 30}, + [249] = {.lex_state = 30}, + [250] = {.lex_state = 30}, + [251] = {.lex_state = 30}, + [252] = {.lex_state = 30}, + [253] = {.lex_state = 30}, + [254] = {.lex_state = 30}, + [255] = {.lex_state = 30}, + [256] = {.lex_state = 30}, + [257] = {.lex_state = 30}, + [258] = {.lex_state = 30}, + [259] = {.lex_state = 30}, + [260] = {.lex_state = 30}, + [261] = {.lex_state = 30}, + [262] = {.lex_state = 30}, + [263] = {.lex_state = 30}, + [264] = {.lex_state = 30}, + [265] = {.lex_state = 30}, + [266] = {.lex_state = 30}, + [267] = {.lex_state = 30}, + [268] = {.lex_state = 30}, + [269] = {.lex_state = 30}, + [270] = {.lex_state = 30}, + [271] = {.lex_state = 30}, + [272] = {.lex_state = 30}, + [273] = {.lex_state = 30}, + [274] = {.lex_state = 30}, + [275] = {.lex_state = 30}, + [276] = {.lex_state = 30}, + [277] = {.lex_state = 30}, + [278] = {.lex_state = 30}, + [279] = {.lex_state = 30}, + [280] = {.lex_state = 30}, + [281] = {.lex_state = 30}, + [282] = {.lex_state = 30}, + [283] = {.lex_state = 30}, + [284] = {.lex_state = 30}, + [285] = {.lex_state = 30}, + [286] = {.lex_state = 30}, + [287] = {.lex_state = 30}, + [288] = {.lex_state = 30}, + [289] = {.lex_state = 30}, + [290] = {.lex_state = 30}, + [291] = {.lex_state = 30}, + [292] = {.lex_state = 30}, + [293] = {.lex_state = 30}, + [294] = {.lex_state = 30}, + [295] = {.lex_state = 30}, + [296] = {.lex_state = 30}, + [297] = {.lex_state = 30}, + [298] = {.lex_state = 30}, + [299] = {.lex_state = 30}, + [300] = {.lex_state = 30}, + [301] = {.lex_state = 30}, + [302] = {.lex_state = 30}, + [303] = {.lex_state = 30}, + [304] = {.lex_state = 30}, + [305] = {.lex_state = 30}, + [306] = {.lex_state = 30}, + [307] = {.lex_state = 30}, + [308] = {.lex_state = 30}, + [309] = {.lex_state = 30}, + [310] = {.lex_state = 30}, + [311] = {.lex_state = 30}, + [312] = {.lex_state = 30}, + [313] = {.lex_state = 30}, + [314] = {.lex_state = 30}, + [315] = {.lex_state = 30}, + [316] = {.lex_state = 30}, + [317] = {.lex_state = 30}, + [318] = {.lex_state = 30}, + [319] = {.lex_state = 30}, + [320] = {.lex_state = 30}, + [321] = {.lex_state = 30}, + [322] = {.lex_state = 30}, + [323] = {.lex_state = 30}, + [324] = {.lex_state = 30}, + [325] = {.lex_state = 30}, + [326] = {.lex_state = 30}, + [327] = {.lex_state = 30}, + [328] = {.lex_state = 30}, + [329] = {.lex_state = 30}, + [330] = {.lex_state = 30}, + [331] = {.lex_state = 30}, + [332] = {.lex_state = 30}, + [333] = {.lex_state = 30}, + [334] = {.lex_state = 30}, + [335] = {.lex_state = 30}, + [336] = {.lex_state = 30}, + [337] = {.lex_state = 30}, + [338] = {.lex_state = 30}, + [339] = {.lex_state = 30}, + [340] = {.lex_state = 30}, + [341] = {.lex_state = 30}, + [342] = {.lex_state = 30}, + [343] = {.lex_state = 13}, + [344] = {.lex_state = 30}, + [345] = {.lex_state = 30}, + [346] = {.lex_state = 30}, + [347] = {.lex_state = 30}, + [348] = {.lex_state = 30}, + [349] = {.lex_state = 30}, + [350] = {.lex_state = 30}, + [351] = {.lex_state = 30}, + [352] = {.lex_state = 30}, + [353] = {.lex_state = 30}, + [354] = {.lex_state = 30}, + [355] = {.lex_state = 30}, + [356] = {.lex_state = 30}, + [357] = {.lex_state = 30}, + [358] = {.lex_state = 30}, + [359] = {.lex_state = 30}, + [360] = {.lex_state = 30}, + [361] = {.lex_state = 30}, + [362] = {.lex_state = 30}, + [363] = {.lex_state = 30}, + [364] = {.lex_state = 30}, + [365] = {.lex_state = 30}, + [366] = {.lex_state = 30}, + [367] = {.lex_state = 30}, + [368] = {.lex_state = 30}, + [369] = {.lex_state = 30}, + [370] = {.lex_state = 30}, + [371] = {.lex_state = 30}, + [372] = {.lex_state = 30}, + [373] = {.lex_state = 30}, + [374] = {.lex_state = 30}, + [375] = {.lex_state = 30}, + [376] = {.lex_state = 30}, + [377] = {.lex_state = 30}, + [378] = {.lex_state = 30}, + [379] = {.lex_state = 30}, + [380] = {.lex_state = 30}, + [381] = {.lex_state = 30}, + [382] = {.lex_state = 30}, + [383] = {.lex_state = 30}, + [384] = {.lex_state = 30}, + [385] = {.lex_state = 30}, + [386] = {.lex_state = 30}, + [387] = {.lex_state = 30}, + [388] = {.lex_state = 30}, + [389] = {.lex_state = 30}, + [390] = {.lex_state = 30}, + [391] = {.lex_state = 30}, + [392] = {.lex_state = 30}, + [393] = {.lex_state = 30}, + [394] = {.lex_state = 30}, + [395] = {.lex_state = 30}, + [396] = {.lex_state = 30}, + [397] = {.lex_state = 30}, + [398] = {.lex_state = 30}, + [399] = {.lex_state = 30}, + [400] = {.lex_state = 30}, + [401] = {.lex_state = 30}, + [402] = {.lex_state = 30}, + [403] = {.lex_state = 30}, + [404] = {.lex_state = 30}, + [405] = {.lex_state = 30}, + [406] = {.lex_state = 30}, + [407] = {.lex_state = 30}, + [408] = {.lex_state = 30}, + [409] = {.lex_state = 30}, + [410] = {.lex_state = 30}, + [411] = {.lex_state = 30}, + [412] = {.lex_state = 30}, + [413] = {.lex_state = 30}, + [414] = {.lex_state = 30}, + [415] = {.lex_state = 30}, + [416] = {.lex_state = 30}, + [417] = {.lex_state = 30}, + [418] = {.lex_state = 30}, + [419] = {.lex_state = 30}, + [420] = {.lex_state = 30}, + [421] = {.lex_state = 30}, + [422] = {.lex_state = 30}, + [423] = {.lex_state = 30}, + [424] = {.lex_state = 30}, + [425] = {.lex_state = 30}, + [426] = {.lex_state = 30}, + [427] = {.lex_state = 30}, + [428] = {.lex_state = 13}, + [429] = {.lex_state = 30}, + [430] = {.lex_state = 30}, + [431] = {.lex_state = 30}, + [432] = {.lex_state = 13}, + [433] = {.lex_state = 30}, + [434] = {.lex_state = 30}, + [435] = {.lex_state = 13}, + [436] = {.lex_state = 13}, + [437] = {.lex_state = 13}, + [438] = {.lex_state = 13}, + [439] = {.lex_state = 13}, + [440] = {.lex_state = 13}, + [441] = {.lex_state = 30}, + [442] = {.lex_state = 30}, + [443] = {.lex_state = 13}, + [444] = {.lex_state = 30}, + [445] = {.lex_state = 30}, + [446] = {.lex_state = 13}, + [447] = {.lex_state = 30}, + [448] = {.lex_state = 13}, + [449] = {.lex_state = 13}, + [450] = {.lex_state = 30}, + [451] = {.lex_state = 13}, + [452] = {.lex_state = 13}, + [453] = {.lex_state = 30}, + [454] = {.lex_state = 30}, + [455] = {.lex_state = 13}, + [456] = {.lex_state = 30}, + [457] = {.lex_state = 13}, + [458] = {.lex_state = 30}, + [459] = {.lex_state = 30}, + [460] = {.lex_state = 13}, + [461] = {.lex_state = 30}, + [462] = {.lex_state = 30}, + [463] = {.lex_state = 30}, + [464] = {.lex_state = 30}, + [465] = {.lex_state = 30}, + [466] = {.lex_state = 30}, + [467] = {.lex_state = 30}, + [468] = {.lex_state = 30}, + [469] = {.lex_state = 30}, + [470] = {.lex_state = 30}, + [471] = {.lex_state = 30}, + [472] = {.lex_state = 30}, + [473] = {.lex_state = 30}, + [474] = {.lex_state = 30}, + [475] = {.lex_state = 30}, + [476] = {.lex_state = 13}, + [477] = {.lex_state = 13}, + [478] = {.lex_state = 13}, + [479] = {.lex_state = 13}, + [480] = {.lex_state = 14}, + [481] = {.lex_state = 14}, + [482] = {.lex_state = 14}, + [483] = {.lex_state = 14}, + [484] = {.lex_state = 14}, + [485] = {.lex_state = 14}, + [486] = {.lex_state = 13}, + [487] = {.lex_state = 30}, + [488] = {.lex_state = 30}, + [489] = {.lex_state = 30}, + [490] = {.lex_state = 30}, + [491] = {.lex_state = 13}, + [492] = {.lex_state = 30}, + [493] = {.lex_state = 13}, + [494] = {.lex_state = 14}, + [495] = {.lex_state = 30}, + [496] = {.lex_state = 14}, + [497] = {.lex_state = 14}, + [498] = {.lex_state = 30}, + [499] = {.lex_state = 14}, + [500] = {.lex_state = 14}, + [501] = {.lex_state = 30}, + [502] = {.lex_state = 9}, + [503] = {.lex_state = 13}, + [504] = {.lex_state = 13}, + [505] = {.lex_state = 30}, + [506] = {.lex_state = 14}, + [507] = {.lex_state = 30}, + [508] = {.lex_state = 30}, + [509] = {.lex_state = 30}, + [510] = {.lex_state = 30}, + [511] = {.lex_state = 14}, + [512] = {.lex_state = 13}, + [513] = {.lex_state = 13}, + [514] = {.lex_state = 13}, + [515] = {.lex_state = 30}, + [516] = {.lex_state = 30}, + [517] = {.lex_state = 30}, + [518] = {.lex_state = 30}, + [519] = {.lex_state = 13}, + [520] = {.lex_state = 30}, + [521] = {.lex_state = 30}, + [522] = {.lex_state = 30}, + [523] = {.lex_state = 30}, + [524] = {.lex_state = 13}, + [525] = {.lex_state = 30}, + [526] = {.lex_state = 30}, + [527] = {.lex_state = 30}, + [528] = {.lex_state = 13}, + [529] = {.lex_state = 13}, + [530] = {.lex_state = 30}, + [531] = {.lex_state = 30}, + [532] = {.lex_state = 30}, + [533] = {.lex_state = 13}, + [534] = {.lex_state = 30}, + [535] = {.lex_state = 30}, + [536] = {.lex_state = 30}, + [537] = {.lex_state = 30}, + [538] = {.lex_state = 30}, + [539] = {.lex_state = 30}, + [540] = {.lex_state = 30}, + [541] = {.lex_state = 30}, + [542] = {.lex_state = 30}, + [543] = {.lex_state = 30}, + [544] = {.lex_state = 30}, + [545] = {.lex_state = 30}, + [546] = {.lex_state = 30}, + [547] = {.lex_state = 30}, + [548] = {.lex_state = 30}, + [549] = {.lex_state = 14}, + [550] = {.lex_state = 14}, + [551] = {.lex_state = 30}, + [552] = {.lex_state = 30}, + [553] = {.lex_state = 30}, + [554] = {.lex_state = 30}, + [555] = {.lex_state = 30}, + [556] = {.lex_state = 30}, + [557] = {.lex_state = 30}, + [558] = {.lex_state = 30}, + [559] = {.lex_state = 30}, + [560] = {.lex_state = 30}, + [561] = {.lex_state = 13}, + [562] = {.lex_state = 30}, + [563] = {.lex_state = 30}, + [564] = {.lex_state = 30}, + [565] = {.lex_state = 30}, + [566] = {.lex_state = 30}, + [567] = {.lex_state = 30}, + [568] = {.lex_state = 30}, + [569] = {.lex_state = 30}, + [570] = {.lex_state = 14}, + [571] = {.lex_state = 30}, + [572] = {.lex_state = 30}, + [573] = {.lex_state = 30}, + [574] = {.lex_state = 30}, + [575] = {.lex_state = 30}, + [576] = {.lex_state = 30}, + [577] = {.lex_state = 30}, + [578] = {.lex_state = 30}, + [579] = {.lex_state = 30}, + [580] = {.lex_state = 30}, + [581] = {.lex_state = 30}, + [582] = {.lex_state = 30}, + [583] = {.lex_state = 30}, + [584] = {.lex_state = 30}, + [585] = {.lex_state = 30}, + [586] = {.lex_state = 30}, + [587] = {.lex_state = 30}, + [588] = {.lex_state = 30}, + [589] = {.lex_state = 30}, + [590] = {.lex_state = 30}, + [591] = {.lex_state = 30}, + [592] = {.lex_state = 30}, + [593] = {.lex_state = 30}, + [594] = {.lex_state = 30}, + [595] = {.lex_state = 30}, + [596] = {.lex_state = 30}, + [597] = {.lex_state = 30}, + [598] = {.lex_state = 30}, + [599] = {.lex_state = 30}, + [600] = {.lex_state = 30}, + [601] = {.lex_state = 30}, + [602] = {.lex_state = 30}, + [603] = {.lex_state = 30}, + [604] = {.lex_state = 30}, + [605] = {.lex_state = 30}, + [606] = {.lex_state = 30}, + [607] = {.lex_state = 14}, + [608] = {.lex_state = 30}, + [609] = {.lex_state = 30}, + [610] = {.lex_state = 30}, + [611] = {.lex_state = 30}, + [612] = {.lex_state = 30}, + [613] = {.lex_state = 30}, + [614] = {.lex_state = 30}, + [615] = {.lex_state = 30}, + [616] = {.lex_state = 30}, + [617] = {.lex_state = 30}, + [618] = {.lex_state = 30}, + [619] = {.lex_state = 30}, + [620] = {.lex_state = 30}, + [621] = {.lex_state = 30}, + [622] = {.lex_state = 30}, + [623] = {.lex_state = 30}, + [624] = {.lex_state = 30}, + [625] = {.lex_state = 30}, + [626] = {.lex_state = 30}, + [627] = {.lex_state = 30}, + [628] = {.lex_state = 30}, + [629] = {.lex_state = 30}, + [630] = {.lex_state = 30}, + [631] = {.lex_state = 30}, + [632] = {.lex_state = 30}, + [633] = {.lex_state = 14}, + [634] = {.lex_state = 30}, + [635] = {.lex_state = 14}, + [636] = {.lex_state = 30}, + [637] = {.lex_state = 30}, + [638] = {.lex_state = 30}, + [639] = {.lex_state = 30}, + [640] = {.lex_state = 30}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 30}, + [643] = {.lex_state = 30}, + [644] = {.lex_state = 30}, + [645] = {.lex_state = 10}, + [646] = {.lex_state = 30}, + [647] = {.lex_state = 30}, + [648] = {.lex_state = 30}, + [649] = {.lex_state = 30}, + [650] = {.lex_state = 30}, + [651] = {.lex_state = 30}, + [652] = {.lex_state = 30}, + [653] = {.lex_state = 30}, + [654] = {.lex_state = 30}, + [655] = {.lex_state = 30}, + [656] = {.lex_state = 30}, + [657] = {.lex_state = 30}, + [658] = {.lex_state = 30}, + [659] = {.lex_state = 14}, + [660] = {.lex_state = 30}, + [661] = {.lex_state = 30}, + [662] = {.lex_state = 14}, + [663] = {.lex_state = 30}, + [664] = {.lex_state = 13}, + [665] = {.lex_state = 30}, + [666] = {.lex_state = 30}, + [667] = {.lex_state = 30}, + [668] = {.lex_state = 30}, + [669] = {.lex_state = 30}, + [670] = {.lex_state = 0}, + [671] = {.lex_state = 30}, + [672] = {.lex_state = 30}, + [673] = {.lex_state = 30}, + [674] = {.lex_state = 0}, + [675] = {.lex_state = 30}, + [676] = {.lex_state = 30}, + [677] = {.lex_state = 30}, + [678] = {.lex_state = 30}, + [679] = {.lex_state = 30}, + [680] = {.lex_state = 30}, + [681] = {.lex_state = 30}, + [682] = {.lex_state = 30}, + [683] = {.lex_state = 30}, + [684] = {.lex_state = 30}, + [685] = {.lex_state = 30}, + [686] = {.lex_state = 30}, + [687] = {.lex_state = 30}, + [688] = {.lex_state = 30}, + [689] = {.lex_state = 30}, + [690] = {.lex_state = 30}, + [691] = {.lex_state = 30}, + [692] = {.lex_state = 30}, + [693] = {.lex_state = 30}, + [694] = {.lex_state = 30}, + [695] = {.lex_state = 30}, + [696] = {.lex_state = 30}, + [697] = {.lex_state = 30}, + [698] = {.lex_state = 30}, + [699] = {.lex_state = 30}, + [700] = {.lex_state = 30}, + [701] = {.lex_state = 30}, + [702] = {.lex_state = 30}, + [703] = {.lex_state = 30}, + [704] = {.lex_state = 30}, + [705] = {.lex_state = 30}, + [706] = {.lex_state = 30}, + [707] = {.lex_state = 30}, + [708] = {.lex_state = 30}, + [709] = {.lex_state = 30}, + [710] = {.lex_state = 30}, + [711] = {.lex_state = 30}, + [712] = {.lex_state = 30}, + [713] = {.lex_state = 30}, + [714] = {.lex_state = 30}, + [715] = {.lex_state = 30}, + [716] = {.lex_state = 30}, + [717] = {.lex_state = 30}, + [718] = {.lex_state = 30}, + [719] = {.lex_state = 30}, + [720] = {.lex_state = 30}, + [721] = {.lex_state = 30}, + [722] = {.lex_state = 30}, + [723] = {.lex_state = 30}, + [724] = {.lex_state = 30}, + [725] = {.lex_state = 30}, + [726] = {.lex_state = 30}, + [727] = {.lex_state = 30}, + [728] = {.lex_state = 30}, + [729] = {.lex_state = 30}, + [730] = {.lex_state = 30}, + [731] = {.lex_state = 30}, + [732] = {.lex_state = 30}, + [733] = {.lex_state = 30}, + [734] = {.lex_state = 30}, + [735] = {.lex_state = 30}, + [736] = {.lex_state = 30}, + [737] = {.lex_state = 30}, + [738] = {.lex_state = 30}, + [739] = {.lex_state = 30}, + [740] = {.lex_state = 30}, + [741] = {.lex_state = 30}, + [742] = {.lex_state = 30}, + [743] = {.lex_state = 30}, + [744] = {.lex_state = 30}, + [745] = {.lex_state = 30}, + [746] = {.lex_state = 30}, + [747] = {.lex_state = 30}, + [748] = {.lex_state = 30}, + [749] = {.lex_state = 30}, + [750] = {.lex_state = 30}, + [751] = {.lex_state = 30}, + [752] = {.lex_state = 30}, + [753] = {.lex_state = 30}, + [754] = {.lex_state = 30}, + [755] = {.lex_state = 30}, + [756] = {.lex_state = 30}, + [757] = {.lex_state = 30}, + [758] = {.lex_state = 30}, + [759] = {.lex_state = 30}, + [760] = {.lex_state = 14}, + [761] = {.lex_state = 30}, + [762] = {.lex_state = 30}, + [763] = {.lex_state = 30}, + [764] = {.lex_state = 30}, + [765] = {.lex_state = 30}, + [766] = {.lex_state = 30}, + [767] = {.lex_state = 30}, + [768] = {.lex_state = 30}, + [769] = {.lex_state = 30}, + [770] = {.lex_state = 30}, + [771] = {.lex_state = 30}, + [772] = {.lex_state = 30}, + [773] = {.lex_state = 30}, + [774] = {.lex_state = 30}, + [775] = {.lex_state = 30}, + [776] = {.lex_state = 30}, + [777] = {.lex_state = 30}, + [778] = {.lex_state = 30}, + [779] = {.lex_state = 30}, + [780] = {.lex_state = 30}, + [781] = {.lex_state = 30}, + [782] = {.lex_state = 30}, + [783] = {.lex_state = 30}, + [784] = {.lex_state = 30}, + [785] = {.lex_state = 30}, + [786] = {.lex_state = 30}, + [787] = {.lex_state = 30}, + [788] = {.lex_state = 30}, + [789] = {.lex_state = 30}, + [790] = {.lex_state = 30}, + [791] = {.lex_state = 30}, + [792] = {.lex_state = 30}, + [793] = {.lex_state = 30}, + [794] = {.lex_state = 30}, + [795] = {.lex_state = 30}, + [796] = {.lex_state = 30}, + [797] = {.lex_state = 30}, + [798] = {.lex_state = 30}, + [799] = {.lex_state = 30}, + [800] = {.lex_state = 30}, + [801] = {.lex_state = 30}, + [802] = {.lex_state = 30}, + [803] = {.lex_state = 30}, + [804] = {.lex_state = 14}, + [805] = {.lex_state = 30}, + [806] = {.lex_state = 30}, + [807] = {.lex_state = 30}, + [808] = {.lex_state = 30}, + [809] = {.lex_state = 30}, + [810] = {.lex_state = 30}, + [811] = {.lex_state = 30}, + [812] = {.lex_state = 14}, + [813] = {.lex_state = 30}, + [814] = {.lex_state = 30}, + [815] = {.lex_state = 14}, + [816] = {.lex_state = 14}, + [817] = {.lex_state = 30}, + [818] = {.lex_state = 14}, + [819] = {.lex_state = 14}, + [820] = {.lex_state = 30}, + [821] = {.lex_state = 14}, + [822] = {.lex_state = 30}, + [823] = {.lex_state = 30}, + [824] = {.lex_state = 30}, + [825] = {.lex_state = 30}, + [826] = {.lex_state = 14}, + [827] = {.lex_state = 14}, + [828] = {.lex_state = 14}, + [829] = {.lex_state = 14}, + [830] = {.lex_state = 14}, + [831] = {.lex_state = 14}, + [832] = {.lex_state = 14}, + [833] = {.lex_state = 14}, + [834] = {.lex_state = 30}, + [835] = {.lex_state = 30}, + [836] = {.lex_state = 30}, + [837] = {.lex_state = 30}, + [838] = {.lex_state = 30}, + [839] = {.lex_state = 30}, + [840] = {.lex_state = 30}, + [841] = {.lex_state = 30}, + [842] = {.lex_state = 14}, + [843] = {.lex_state = 14}, + [844] = {.lex_state = 30}, + [845] = {.lex_state = 30}, + [846] = {.lex_state = 30}, + [847] = {.lex_state = 14}, + [848] = {.lex_state = 13}, + [849] = {.lex_state = 13}, + [850] = {.lex_state = 30}, + [851] = {.lex_state = 30}, + [852] = {.lex_state = 14}, + [853] = {.lex_state = 13}, + [854] = {.lex_state = 30}, + [855] = {.lex_state = 30}, + [856] = {.lex_state = 14}, + [857] = {.lex_state = 30}, + [858] = {.lex_state = 30}, + [859] = {.lex_state = 30}, + [860] = {.lex_state = 30}, + [861] = {.lex_state = 30}, + [862] = {.lex_state = 30}, + [863] = {.lex_state = 13}, + [864] = {.lex_state = 30}, + [865] = {.lex_state = 30}, + [866] = {.lex_state = 30}, + [867] = {.lex_state = 30}, + [868] = {.lex_state = 14}, + [869] = {.lex_state = 30}, + [870] = {.lex_state = 30}, + [871] = {.lex_state = 30}, + [872] = {.lex_state = 30}, + [873] = {.lex_state = 13}, + [874] = {.lex_state = 30}, + [875] = {.lex_state = 30}, + [876] = {.lex_state = 13}, + [877] = {.lex_state = 30}, + [878] = {.lex_state = 30}, + [879] = {.lex_state = 13}, + [880] = {.lex_state = 14}, + [881] = {.lex_state = 14}, + [882] = {.lex_state = 14}, + [883] = {.lex_state = 14}, + [884] = {.lex_state = 14}, + [885] = {.lex_state = 14}, + [886] = {.lex_state = 30}, + [887] = {.lex_state = 14}, + [888] = {.lex_state = 14}, + [889] = {.lex_state = 14}, + [890] = {.lex_state = 14}, + [891] = {.lex_state = 14}, + [892] = {.lex_state = 14}, + [893] = {.lex_state = 30}, + [894] = {.lex_state = 30}, + [895] = {.lex_state = 13}, + [896] = {.lex_state = 30}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 13}, + [899] = {.lex_state = 30}, + [900] = {.lex_state = 14}, + [901] = {.lex_state = 14}, + [902] = {.lex_state = 30}, + [903] = {.lex_state = 30}, + [904] = {.lex_state = 14}, + [905] = {.lex_state = 14}, + [906] = {.lex_state = 14}, + [907] = {.lex_state = 30}, + [908] = {.lex_state = 13}, + [909] = {.lex_state = 30}, + [910] = {.lex_state = 30}, + [911] = {.lex_state = 30}, + [912] = {.lex_state = 30}, + [913] = {.lex_state = 30}, + [914] = {.lex_state = 30}, + [915] = {.lex_state = 30}, + [916] = {.lex_state = 30}, + [917] = {.lex_state = 14}, + [918] = {.lex_state = 30}, + [919] = {.lex_state = 30}, + [920] = {.lex_state = 30}, + [921] = {.lex_state = 30}, + [922] = {.lex_state = 30}, + [923] = {.lex_state = 30}, + [924] = {.lex_state = 30}, + [925] = {.lex_state = 13}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 30}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 30}, + [930] = {.lex_state = 30}, + [931] = {.lex_state = 30}, + [932] = {.lex_state = 30}, + [933] = {.lex_state = 30}, + [934] = {.lex_state = 30}, + [935] = {.lex_state = 30}, + [936] = {.lex_state = 14}, + [937] = {.lex_state = 30}, + [938] = {.lex_state = 30}, + [939] = {.lex_state = 30}, + [940] = {.lex_state = 30}, + [941] = {.lex_state = 30}, + [942] = {.lex_state = 14}, + [943] = {.lex_state = 30}, + [944] = {.lex_state = 14}, + [945] = {.lex_state = 30}, + [946] = {.lex_state = 30}, + [947] = {.lex_state = 30}, + [948] = {.lex_state = 14}, + [949] = {.lex_state = 30}, + [950] = {.lex_state = 30}, + [951] = {.lex_state = 30}, + [952] = {.lex_state = 30}, + [953] = {.lex_state = 30}, + [954] = {.lex_state = 13}, + [955] = {.lex_state = 13}, + [956] = {.lex_state = 13}, + [957] = {.lex_state = 30}, + [958] = {.lex_state = 30}, + [959] = {.lex_state = 13}, + [960] = {.lex_state = 14}, + [961] = {.lex_state = 13}, + [962] = {.lex_state = 13}, + [963] = {.lex_state = 13}, + [964] = {.lex_state = 13}, + [965] = {.lex_state = 30}, + [966] = {.lex_state = 13}, + [967] = {.lex_state = 30}, + [968] = {.lex_state = 30}, + [969] = {.lex_state = 14}, + [970] = {.lex_state = 30}, + [971] = {.lex_state = 30}, + [972] = {.lex_state = 30}, + [973] = {.lex_state = 30}, + [974] = {.lex_state = 30}, + [975] = {.lex_state = 30}, + [976] = {.lex_state = 30}, + [977] = {.lex_state = 30}, + [978] = {.lex_state = 30}, + [979] = {.lex_state = 30}, + [980] = {.lex_state = 30}, + [981] = {.lex_state = 13}, + [982] = {.lex_state = 30}, + [983] = {.lex_state = 30}, + [984] = {.lex_state = 13}, + [985] = {.lex_state = 14}, + [986] = {.lex_state = 13}, + [987] = {.lex_state = 30}, + [988] = {.lex_state = 30}, + [989] = {.lex_state = 13}, + [990] = {.lex_state = 13}, + [991] = {.lex_state = 30}, + [992] = {.lex_state = 14}, + [993] = {.lex_state = 30}, + [994] = {.lex_state = 30}, + [995] = {.lex_state = 30}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 30}, + [998] = {.lex_state = 30}, + [999] = {.lex_state = 30}, + [1000] = {.lex_state = 30}, + [1001] = {.lex_state = 13}, + [1002] = {.lex_state = 13}, + [1003] = {.lex_state = 13}, + [1004] = {.lex_state = 30}, + [1005] = {.lex_state = 30}, + [1006] = {.lex_state = 14}, + [1007] = {.lex_state = 30}, + [1008] = {.lex_state = 30}, + [1009] = {.lex_state = 13}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 30}, + [1012] = {.lex_state = 13}, + [1013] = {.lex_state = 13}, + [1014] = {.lex_state = 30}, + [1015] = {.lex_state = 13}, + [1016] = {.lex_state = 13}, + [1017] = {.lex_state = 30}, + [1018] = {.lex_state = 30}, + [1019] = {.lex_state = 30}, + [1020] = {.lex_state = 13}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 30}, + [1023] = {.lex_state = 30}, + [1024] = {.lex_state = 30}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 30}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 30}, + [1029] = {.lex_state = 30}, + [1030] = {.lex_state = 30}, + [1031] = {.lex_state = 30}, + [1032] = {.lex_state = 30}, + [1033] = {.lex_state = 30}, + [1034] = {.lex_state = 30}, + [1035] = {.lex_state = 30}, + [1036] = {.lex_state = 30}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 30}, + [1039] = {.lex_state = 30}, + [1040] = {.lex_state = 30}, + [1041] = {.lex_state = 30}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 30}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 30}, + [1046] = {.lex_state = 30}, + [1047] = {.lex_state = 30}, + [1048] = {.lex_state = 30}, + [1049] = {.lex_state = 0}, + [1050] = {.lex_state = 30}, + [1051] = {.lex_state = 30}, + [1052] = {.lex_state = 30}, + [1053] = {.lex_state = 30}, + [1054] = {.lex_state = 30}, + [1055] = {.lex_state = 30}, + [1056] = {.lex_state = 30}, + [1057] = {.lex_state = 30}, + [1058] = {.lex_state = 30}, + [1059] = {.lex_state = 30}, + [1060] = {.lex_state = 30}, + [1061] = {.lex_state = 30}, + [1062] = {.lex_state = 30}, + [1063] = {.lex_state = 30}, + [1064] = {.lex_state = 30}, + [1065] = {.lex_state = 30}, + [1066] = {.lex_state = 30}, + [1067] = {.lex_state = 30}, + [1068] = {.lex_state = 30}, + [1069] = {.lex_state = 30}, + [1070] = {.lex_state = 30}, + [1071] = {.lex_state = 30}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 30}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 30}, + [1076] = {.lex_state = 30}, + [1077] = {.lex_state = 14}, + [1078] = {.lex_state = 30}, + [1079] = {.lex_state = 30}, + [1080] = {.lex_state = 30}, + [1081] = {.lex_state = 30}, + [1082] = {.lex_state = 30}, + [1083] = {.lex_state = 30}, + [1084] = {.lex_state = 30}, + [1085] = {.lex_state = 30}, + [1086] = {.lex_state = 30}, + [1087] = {.lex_state = 30}, + [1088] = {.lex_state = 30}, + [1089] = {.lex_state = 30}, + [1090] = {.lex_state = 30}, + [1091] = {.lex_state = 30}, + [1092] = {.lex_state = 30}, + [1093] = {.lex_state = 30}, + [1094] = {.lex_state = 30}, + [1095] = {.lex_state = 30}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 13}, + [1098] = {.lex_state = 30}, + [1099] = {.lex_state = 30}, + [1100] = {.lex_state = 30}, + [1101] = {.lex_state = 30}, + [1102] = {.lex_state = 30}, + [1103] = {.lex_state = 30}, + [1104] = {.lex_state = 30}, + [1105] = {.lex_state = 30}, + [1106] = {.lex_state = 30}, + [1107] = {.lex_state = 30}, + [1108] = {.lex_state = 30}, + [1109] = {.lex_state = 30}, + [1110] = {.lex_state = 30}, + [1111] = {.lex_state = 30}, + [1112] = {.lex_state = 30}, + [1113] = {.lex_state = 30}, + [1114] = {.lex_state = 30}, + [1115] = {.lex_state = 30}, + [1116] = {.lex_state = 30}, + [1117] = {.lex_state = 30}, + [1118] = {.lex_state = 30}, + [1119] = {.lex_state = 30}, + [1120] = {.lex_state = 30}, + [1121] = {.lex_state = 30}, + [1122] = {.lex_state = 30}, + [1123] = {.lex_state = 30}, + [1124] = {.lex_state = 30}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 30}, + [1127] = {.lex_state = 30}, + [1128] = {.lex_state = 30}, + [1129] = {.lex_state = 30}, + [1130] = {.lex_state = 30}, + [1131] = {.lex_state = 30}, + [1132] = {.lex_state = 30}, + [1133] = {.lex_state = 30}, + [1134] = {.lex_state = 30}, + [1135] = {.lex_state = 30}, + [1136] = {.lex_state = 30}, + [1137] = {.lex_state = 30}, + [1138] = {.lex_state = 30}, + [1139] = {.lex_state = 30}, + [1140] = {.lex_state = 30}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 30}, + [1143] = {.lex_state = 30}, + [1144] = {.lex_state = 30}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 30}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 30}, + [1150] = {.lex_state = 30}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 30}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 30}, + [1155] = {.lex_state = 30}, + [1156] = {.lex_state = 30}, + [1157] = {.lex_state = 30}, + [1158] = {.lex_state = 30}, + [1159] = {.lex_state = 30}, + [1160] = {.lex_state = 30}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 14}, + [1165] = {.lex_state = 30}, + [1166] = {.lex_state = 30}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 30}, + [1169] = {.lex_state = 30}, + [1170] = {.lex_state = 13}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 30}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 30}, + [1175] = {.lex_state = 30}, + [1176] = {.lex_state = 30}, + [1177] = {.lex_state = 30}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 30}, + [1180] = {.lex_state = 30}, + [1181] = {.lex_state = 30}, + [1182] = {.lex_state = 30}, + [1183] = {.lex_state = 30}, + [1184] = {.lex_state = 30}, + [1185] = {.lex_state = 30}, + [1186] = {.lex_state = 30}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 30}, + [1190] = {.lex_state = 13}, + [1191] = {.lex_state = 30}, + [1192] = {.lex_state = 30}, + [1193] = {.lex_state = 30}, + [1194] = {.lex_state = 30}, + [1195] = {.lex_state = 30}, + [1196] = {.lex_state = 30}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 30}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 30}, + [1202] = {.lex_state = 30}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 30}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 30}, + [1209] = {.lex_state = 30}, + [1210] = {.lex_state = 30}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 30}, + [1213] = {.lex_state = 30}, + [1214] = {.lex_state = 30}, + [1215] = {.lex_state = 30}, + [1216] = {.lex_state = 30}, + [1217] = {.lex_state = 30}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 30}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 30}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 30}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 30}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 30}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 30}, + [1232] = {.lex_state = 30}, + [1233] = {.lex_state = 30}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 30}, + [1238] = {.lex_state = 30}, + [1239] = {.lex_state = 30}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 30}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 30}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 30}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 30}, + [1249] = {.lex_state = 30}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 30}, + [1252] = {.lex_state = 30}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 30}, + [1255] = {.lex_state = 30}, + [1256] = {.lex_state = 30}, + [1257] = {.lex_state = 30}, + [1258] = {.lex_state = 30}, + [1259] = {.lex_state = 30}, + [1260] = {.lex_state = 30}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 30}, + [1263] = {.lex_state = 30}, + [1264] = {.lex_state = 30}, + [1265] = {.lex_state = 30}, + [1266] = {.lex_state = 30}, + [1267] = {.lex_state = 30}, + [1268] = {.lex_state = 30}, + [1269] = {.lex_state = 30}, + [1270] = {.lex_state = 13}, + [1271] = {.lex_state = 30}, + [1272] = {.lex_state = 30}, + [1273] = {.lex_state = 30}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 30}, + [1276] = {.lex_state = 30}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 30}, + [1279] = {.lex_state = 30}, + [1280] = {.lex_state = 30}, + [1281] = {.lex_state = 30}, + [1282] = {.lex_state = 30}, + [1283] = {.lex_state = 30}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 30}, + [1286] = {.lex_state = 30}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 30}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 30}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 30}, + [1293] = {.lex_state = 30}, + [1294] = {.lex_state = 30}, + [1295] = {.lex_state = 30}, + [1296] = {.lex_state = 30}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 30}, + [1299] = {.lex_state = 30}, + [1300] = {.lex_state = 30}, + [1301] = {.lex_state = 30}, + [1302] = {.lex_state = 30}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 13}, + [1305] = {.lex_state = 30}, + [1306] = {.lex_state = 30}, + [1307] = {.lex_state = 30}, + [1308] = {.lex_state = 30}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 30}, + [1311] = {.lex_state = 30}, + [1312] = {.lex_state = 30}, + [1313] = {.lex_state = 30}, + [1314] = {.lex_state = 30}, + [1315] = {.lex_state = 30}, + [1316] = {.lex_state = 30}, + [1317] = {.lex_state = 30}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 30}, + [1322] = {.lex_state = 30}, + [1323] = {.lex_state = 30}, + [1324] = {.lex_state = 30}, + [1325] = {.lex_state = 30}, + [1326] = {.lex_state = 30}, + [1327] = {.lex_state = 30}, + [1328] = {.lex_state = 30}, + [1329] = {.lex_state = 30}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 30}, + [1332] = {.lex_state = 30}, + [1333] = {.lex_state = 30}, + [1334] = {.lex_state = 30}, + [1335] = {.lex_state = 30}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 30}, + [1338] = {.lex_state = 30}, + [1339] = {.lex_state = 30}, + [1340] = {.lex_state = 30}, + [1341] = {.lex_state = 30}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 30}, + [1344] = {.lex_state = 30}, + [1345] = {.lex_state = 30}, + [1346] = {.lex_state = 30}, + [1347] = {.lex_state = 30}, + [1348] = {.lex_state = 30}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 30}, + [1351] = {.lex_state = 30}, + [1352] = {.lex_state = 30}, + [1353] = {.lex_state = 30}, + [1354] = {.lex_state = 30}, + [1355] = {.lex_state = 30}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 30}, + [1359] = {.lex_state = 30}, + [1360] = {.lex_state = 30}, + [1361] = {.lex_state = 30}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 30}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 30}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 30}, + [1368] = {.lex_state = 30}, + [1369] = {.lex_state = 30}, + [1370] = {.lex_state = 30}, + [1371] = {.lex_state = 30}, + [1372] = {.lex_state = 30}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 30}, + [1375] = {.lex_state = 30}, + [1376] = {.lex_state = 30}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 30}, + [1381] = {.lex_state = 30}, + [1382] = {.lex_state = 30}, + [1383] = {.lex_state = 30}, + [1384] = {.lex_state = 30}, + [1385] = {.lex_state = 30}, + [1386] = {.lex_state = 30}, + [1387] = {.lex_state = 30}, + [1388] = {.lex_state = 30}, + [1389] = {.lex_state = 30}, + [1390] = {.lex_state = 30}, + [1391] = {.lex_state = 30}, + [1392] = {.lex_state = 30}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 30}, + [1395] = {.lex_state = 30}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 30}, + [1398] = {.lex_state = 30}, + [1399] = {.lex_state = 30}, + [1400] = {.lex_state = 30}, + [1401] = {.lex_state = 30}, + [1402] = {.lex_state = 30}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 30}, + [1405] = {.lex_state = 30}, + [1406] = {.lex_state = 30}, + [1407] = {.lex_state = 30}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 30}, + [1411] = {.lex_state = 30}, + [1412] = {.lex_state = 30}, + [1413] = {.lex_state = 30}, + [1414] = {.lex_state = 30}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 30}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 30}, + [1419] = {.lex_state = 30}, + [1420] = {.lex_state = 30}, + [1421] = {.lex_state = 30}, + [1422] = {.lex_state = 30}, + [1423] = {.lex_state = 30}, + [1424] = {.lex_state = 30}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 30}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 30}, + [1429] = {.lex_state = 30}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 30}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 30}, + [1436] = {.lex_state = 30}, + [1437] = {.lex_state = 30}, + [1438] = {.lex_state = 30}, + [1439] = {.lex_state = 30}, + [1440] = {.lex_state = 30}, + [1441] = {.lex_state = 30}, + [1442] = {.lex_state = 30}, + [1443] = {.lex_state = 30}, + [1444] = {.lex_state = 30}, + [1445] = {.lex_state = 30}, + [1446] = {.lex_state = 30}, + [1447] = {.lex_state = 30}, + [1448] = {.lex_state = 30}, + [1449] = {.lex_state = 30}, + [1450] = {.lex_state = 30}, + [1451] = {.lex_state = 30}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 30}, + [1454] = {.lex_state = 30}, + [1455] = {.lex_state = 30}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 30}, + [1460] = {.lex_state = 30}, + [1461] = {.lex_state = 30}, + [1462] = {.lex_state = 30}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 30}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 30}, + [1467] = {.lex_state = 30}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 30}, + [1470] = {.lex_state = 30}, + [1471] = {.lex_state = 30}, + [1472] = {.lex_state = 30}, + [1473] = {.lex_state = 30}, + [1474] = {.lex_state = 30}, + [1475] = {.lex_state = 30}, + [1476] = {.lex_state = 30}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 30}, + [1480] = {.lex_state = 30}, + [1481] = {.lex_state = 30}, + [1482] = {.lex_state = 30}, + [1483] = {.lex_state = 30}, + [1484] = {.lex_state = 30}, + [1485] = {.lex_state = 30}, + [1486] = {.lex_state = 30}, + [1487] = {.lex_state = 30}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 30}, + [1491] = {.lex_state = 30}, + [1492] = {.lex_state = 30}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 30}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 30}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 30}, + [1502] = {.lex_state = 30}, + [1503] = {.lex_state = 30}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 30}, + [1506] = {.lex_state = 30}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 30}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 30}, + [1511] = {.lex_state = 30}, + [1512] = {.lex_state = 30}, + [1513] = {.lex_state = 30}, + [1514] = {.lex_state = 30}, + [1515] = {.lex_state = 30}, + [1516] = {.lex_state = 30}, + [1517] = {.lex_state = 30}, + [1518] = {.lex_state = 30}, + [1519] = {.lex_state = 30}, + [1520] = {.lex_state = 9}, + [1521] = {.lex_state = 30}, + [1522] = {.lex_state = 30}, + [1523] = {.lex_state = 30}, + [1524] = {.lex_state = 30}, + [1525] = {.lex_state = 30}, + [1526] = {.lex_state = 30}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 30}, + [1529] = {.lex_state = 30}, + [1530] = {.lex_state = 30}, + [1531] = {.lex_state = 30}, + [1532] = {.lex_state = 30}, + [1533] = {.lex_state = 30}, + [1534] = {.lex_state = 30}, + [1535] = {.lex_state = 30}, + [1536] = {.lex_state = 30}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 30}, + [1539] = {.lex_state = 30}, + [1540] = {.lex_state = 30}, + [1541] = {.lex_state = 30}, + [1542] = {.lex_state = 30}, + [1543] = {.lex_state = 30}, + [1544] = {.lex_state = 30}, + [1545] = {.lex_state = 30}, + [1546] = {.lex_state = 30}, + [1547] = {.lex_state = 30}, + [1548] = {.lex_state = 30}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 30}, + [1551] = {.lex_state = 30}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 30}, + [1555] = {.lex_state = 30}, + [1556] = {.lex_state = 30}, + [1557] = {.lex_state = 30}, + [1558] = {.lex_state = 30}, + [1559] = {.lex_state = 30}, + [1560] = {.lex_state = 30}, + [1561] = {.lex_state = 30}, + [1562] = {.lex_state = 30}, + [1563] = {.lex_state = 30}, + [1564] = {.lex_state = 30}, + [1565] = {.lex_state = 30}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 30}, + [1568] = {.lex_state = 30}, + [1569] = {.lex_state = 30}, + [1570] = {.lex_state = 30}, + [1571] = {.lex_state = 30}, + [1572] = {.lex_state = 30}, + [1573] = {.lex_state = 30}, + [1574] = {.lex_state = 30}, + [1575] = {.lex_state = 30}, + [1576] = {.lex_state = 30}, + [1577] = {.lex_state = 30}, + [1578] = {.lex_state = 30}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 30}, + [1583] = {.lex_state = 30}, + [1584] = {.lex_state = 30}, + [1585] = {.lex_state = 30}, + [1586] = {.lex_state = 30}, + [1587] = {.lex_state = 30}, + [1588] = {.lex_state = 30}, + [1589] = {.lex_state = 30}, + [1590] = {.lex_state = 30}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 30}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 30}, + [1595] = {.lex_state = 30}, + [1596] = {.lex_state = 30}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 30}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 30}, + [1601] = {.lex_state = 30}, + [1602] = {.lex_state = 30}, + [1603] = {.lex_state = 0}, + [1604] = {.lex_state = 30}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 30}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 30}, + [1609] = {.lex_state = 30}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 30}, + [1612] = {.lex_state = 30}, + [1613] = {.lex_state = 30}, + [1614] = {.lex_state = 30}, + [1615] = {.lex_state = 30}, + [1616] = {.lex_state = 30}, + [1617] = {.lex_state = 30}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 30}, + [1622] = {.lex_state = 30}, + [1623] = {.lex_state = 30}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 30}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 30}, + [1630] = {.lex_state = 30}, + [1631] = {.lex_state = 30}, + [1632] = {.lex_state = 30}, + [1633] = {.lex_state = 30}, + [1634] = {.lex_state = 30}, + [1635] = {.lex_state = 30}, + [1636] = {.lex_state = 30}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 30}, + [1639] = {.lex_state = 30}, + [1640] = {.lex_state = 30}, + [1641] = {.lex_state = 30}, + [1642] = {.lex_state = 30}, + [1643] = {.lex_state = 30}, + [1644] = {.lex_state = 30}, + [1645] = {.lex_state = 30}, + [1646] = {.lex_state = 0}, + [1647] = {.lex_state = 30}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 30}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 30}, + [1653] = {.lex_state = 30}, + [1654] = {.lex_state = 30}, + [1655] = {.lex_state = 30}, + [1656] = {.lex_state = 30}, + [1657] = {.lex_state = 30}, + [1658] = {.lex_state = 30}, + [1659] = {.lex_state = 30}, + [1660] = {.lex_state = 30}, + [1661] = {.lex_state = 30}, + [1662] = {.lex_state = 30}, + [1663] = {.lex_state = 30}, + [1664] = {.lex_state = 9}, + [1665] = {.lex_state = 30}, + [1666] = {.lex_state = 30}, + [1667] = {.lex_state = 30}, + [1668] = {.lex_state = 30}, + [1669] = {.lex_state = 30}, + [1670] = {.lex_state = 30}, + [1671] = {.lex_state = 30}, + [1672] = {.lex_state = 30}, + [1673] = {.lex_state = 30}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 30}, + [1676] = {.lex_state = 30}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 30}, + [1679] = {.lex_state = 30}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 30}, + [1682] = {.lex_state = 30}, + [1683] = {.lex_state = 30}, + [1684] = {.lex_state = 30}, + [1685] = {.lex_state = 30}, + [1686] = {.lex_state = 0}, + [1687] = {.lex_state = 30}, + [1688] = {.lex_state = 30}, + [1689] = {.lex_state = 30}, + [1690] = {.lex_state = 30}, + [1691] = {.lex_state = 30}, + [1692] = {.lex_state = 30}, + [1693] = {.lex_state = 30}, + [1694] = {.lex_state = 30}, + [1695] = {.lex_state = 30}, + [1696] = {.lex_state = 30}, + [1697] = {.lex_state = 30}, + [1698] = {.lex_state = 30}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 30}, + [1701] = {.lex_state = 30}, + [1702] = {.lex_state = 30}, + [1703] = {.lex_state = 30}, + [1704] = {.lex_state = 30}, + [1705] = {.lex_state = 30}, + [1706] = {.lex_state = 30}, + [1707] = {.lex_state = 30}, + [1708] = {.lex_state = 30}, + [1709] = {.lex_state = 30}, + [1710] = {.lex_state = 30}, + [1711] = {.lex_state = 30}, + [1712] = {.lex_state = 30}, + [1713] = {.lex_state = 30}, + [1714] = {.lex_state = 30}, + [1715] = {.lex_state = 30}, + [1716] = {.lex_state = 30}, + [1717] = {.lex_state = 30}, + [1718] = {.lex_state = 30}, + [1719] = {.lex_state = 30}, + [1720] = {.lex_state = 30}, + [1721] = {.lex_state = 30}, + [1722] = {.lex_state = 30}, + [1723] = {.lex_state = 30}, + [1724] = {.lex_state = 30}, + [1725] = {.lex_state = 30}, + [1726] = {.lex_state = 30}, + [1727] = {.lex_state = 30}, + [1728] = {.lex_state = 0}, + [1729] = {.lex_state = 30}, + [1730] = {.lex_state = 30}, + [1731] = {.lex_state = 30}, + [1732] = {.lex_state = 30}, + [1733] = {.lex_state = 30}, + [1734] = {.lex_state = 30}, + [1735] = {.lex_state = 30}, + [1736] = {.lex_state = 30}, + [1737] = {.lex_state = 30}, + [1738] = {.lex_state = 30}, + [1739] = {.lex_state = 30}, + [1740] = {.lex_state = 30}, + [1741] = {.lex_state = 30}, + [1742] = {.lex_state = 30}, + [1743] = {.lex_state = 30}, + [1744] = {.lex_state = 30}, + [1745] = {.lex_state = 30}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 30}, + [1750] = {.lex_state = 30}, + [1751] = {.lex_state = 30}, + [1752] = {.lex_state = 30}, + [1753] = {.lex_state = 30}, + [1754] = {.lex_state = 30}, + [1755] = {.lex_state = 30}, + [1756] = {.lex_state = 30}, + [1757] = {.lex_state = 30}, + [1758] = {.lex_state = 30}, + [1759] = {.lex_state = 30}, + [1760] = {.lex_state = 30}, + [1761] = {.lex_state = 30}, + [1762] = {.lex_state = 30}, + [1763] = {.lex_state = 30}, + [1764] = {.lex_state = 30}, + [1765] = {.lex_state = 30}, + [1766] = {.lex_state = 30}, + [1767] = {.lex_state = 30}, + [1768] = {.lex_state = 30}, + [1769] = {.lex_state = 30}, + [1770] = {.lex_state = 30}, + [1771] = {.lex_state = 30}, + [1772] = {.lex_state = 0}, + [1773] = {.lex_state = 30}, + [1774] = {.lex_state = 30}, + [1775] = {.lex_state = 30}, + [1776] = {.lex_state = 30}, + [1777] = {.lex_state = 30}, + [1778] = {.lex_state = 30}, + [1779] = {.lex_state = 30}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 30}, + [1784] = {.lex_state = 30}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 30}, + [1787] = {.lex_state = 30}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 30}, + [1790] = {.lex_state = 30}, + [1791] = {.lex_state = 30}, + [1792] = {.lex_state = 30}, + [1793] = {.lex_state = 30}, + [1794] = {.lex_state = 30}, + [1795] = {.lex_state = 30}, + [1796] = {.lex_state = 30}, + [1797] = {.lex_state = 30}, + [1798] = {.lex_state = 30}, + [1799] = {.lex_state = 30}, + [1800] = {.lex_state = 30}, + [1801] = {.lex_state = 30}, + [1802] = {.lex_state = 30}, + [1803] = {.lex_state = 30}, + [1804] = {.lex_state = 9}, + [1805] = {.lex_state = 30}, + [1806] = {.lex_state = 30}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 30}, + [1809] = {.lex_state = 30}, + [1810] = {.lex_state = 30}, + [1811] = {.lex_state = 30}, + [1812] = {.lex_state = 30}, + [1813] = {.lex_state = 30}, + [1814] = {.lex_state = 30}, + [1815] = {.lex_state = 30}, + [1816] = {.lex_state = 30}, + [1817] = {.lex_state = 30}, + [1818] = {.lex_state = 30}, + [1819] = {.lex_state = 30}, + [1820] = {.lex_state = 30}, + [1821] = {.lex_state = 30}, + [1822] = {.lex_state = 30}, + [1823] = {.lex_state = 30}, + [1824] = {.lex_state = 30}, + [1825] = {.lex_state = 9}, + [1826] = {.lex_state = 30}, + [1827] = {.lex_state = 30}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 30}, + [1830] = {.lex_state = 30}, + [1831] = {.lex_state = 30}, + [1832] = {.lex_state = 30}, + [1833] = {.lex_state = 30}, + [1834] = {.lex_state = 30}, + [1835] = {.lex_state = 30}, + [1836] = {.lex_state = 30}, + [1837] = {.lex_state = 30}, + [1838] = {.lex_state = 30}, + [1839] = {.lex_state = 30}, + [1840] = {.lex_state = 30}, + [1841] = {.lex_state = 30}, + [1842] = {.lex_state = 30}, + [1843] = {.lex_state = 30}, + [1844] = {.lex_state = 30}, + [1845] = {.lex_state = 30}, + [1846] = {.lex_state = 30}, + [1847] = {.lex_state = 30}, + [1848] = {.lex_state = 30}, + [1849] = {.lex_state = 30}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 30}, + [1852] = {.lex_state = 30}, + [1853] = {.lex_state = 30}, + [1854] = {.lex_state = 30}, + [1855] = {.lex_state = 30}, + [1856] = {.lex_state = 30}, + [1857] = {.lex_state = 30}, + [1858] = {.lex_state = 30}, + [1859] = {.lex_state = 30}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 0}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 30}, + [1868] = {.lex_state = 30}, + [1869] = {.lex_state = 30}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 0}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 30}, + [1874] = {.lex_state = 30}, + [1875] = {.lex_state = 30}, + [1876] = {.lex_state = 30}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 30}, + [1879] = {.lex_state = 30}, + [1880] = {.lex_state = 30}, + [1881] = {.lex_state = 30}, + [1882] = {.lex_state = 30}, + [1883] = {.lex_state = 30}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 30}, + [1886] = {.lex_state = 30}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(1), + [sym_numeric_literal] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_mod] = ACTIONS(1), + [anon_sym_rem] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [aux_sym_value_sequence_token1] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [aux_sym_chunk_specification_token1] = ACTIONS(1), + [aux_sym_iterated_element_association_token1] = ACTIONS(1), + [aux_sym_iterated_element_association_token2] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [aux_sym_loop_parameter_specification_token1] = ACTIONS(1), + [aux_sym_iterator_filter_token1] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [aux_sym_iterator_specification_token1] = ACTIONS(1), + [aux_sym_attribute_designator_token1] = ACTIONS(1), + [aux_sym_attribute_designator_token2] = ACTIONS(1), + [aux_sym_attribute_designator_token3] = ACTIONS(1), + [aux_sym_attribute_designator_token4] = ACTIONS(1), + [aux_sym_compilation_unit_token1] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [aux_sym_package_specification_token1] = ACTIONS(1), + [aux_sym_package_specification_token2] = ACTIONS(1), + [aux_sym_package_specification_token3] = ACTIONS(1), + [aux_sym_with_clause_token1] = ACTIONS(1), + [aux_sym_with_clause_token2] = ACTIONS(1), + [aux_sym_use_clause_token1] = ACTIONS(1), + [aux_sym_use_clause_token2] = ACTIONS(1), + [aux_sym_subunit_token1] = ACTIONS(1), + [aux_sym_subprogram_body_token1] = ACTIONS(1), + [aux_sym_package_body_token1] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [aux_sym_range_attribute_designator_token1] = ACTIONS(1), + [aux_sym_expression_token1] = ACTIONS(1), + [aux_sym_expression_token2] = ACTIONS(1), + [aux_sym_expression_token3] = ACTIONS(1), + [aux_sym_expression_token4] = ACTIONS(1), + [aux_sym_expression_token5] = ACTIONS(1), + [aux_sym_relation_token1] = ACTIONS(1), + [aux_sym_raise_expression_token1] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [aux_sym_factor_token1] = ACTIONS(1), + [aux_sym_primary_token1] = ACTIONS(1), + [aux_sym_allocator_token1] = ACTIONS(1), + [aux_sym_access_type_definition_token1] = ACTIONS(1), + [aux_sym_general_access_modifier_token1] = ACTIONS(1), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(1), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [aux_sym_declare_expression_token1] = ACTIONS(1), + [aux_sym_quantifier_token1] = ACTIONS(1), + [aux_sym_case_expression_token1] = ACTIONS(1), + [aux_sym_record_component_association_list_token1] = ACTIONS(1), + [aux_sym_private_type_declaration_token1] = ACTIONS(1), + [aux_sym_private_type_declaration_token2] = ACTIONS(1), + [aux_sym_private_extension_declaration_token1] = ACTIONS(1), + [aux_sym_unconstrained_array_definition_token1] = ACTIONS(1), + [aux_sym_interface_type_definition_token1] = ACTIONS(1), + [aux_sym_interface_type_definition_token2] = ACTIONS(1), + [aux_sym_component_list_token1] = ACTIONS(1), + [aux_sym_component_definition_token1] = ACTIONS(1), + [aux_sym_positional_array_aggregate_token1] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [aux_sym_at_clause_token1] = ACTIONS(1), + [aux_sym_entry_declaration_token1] = ACTIONS(1), + [aux_sym_exception_declaration_token1] = ACTIONS(1), + [aux_sym_generic_formal_part_token1] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), + [anon_sym_all] = ACTIONS(1), + [aux_sym_extended_global_aspect_definition_token1] = ACTIONS(1), + [aux_sym_global_mode_token1] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [aux_sym_non_empty_mode_token1] = ACTIONS(1), + [aux_sym_pragma_g_token1] = ACTIONS(1), + [aux_sym_if_expression_token1] = ACTIONS(1), + [aux_sym_elsif_expression_item_token1] = ACTIONS(1), + [aux_sym_object_renaming_declaration_token1] = ACTIONS(1), + [aux_sym_result_profile_token1] = ACTIONS(1), + [aux_sym_asynchronous_select_token1] = ACTIONS(1), + [aux_sym_asynchronous_select_token2] = ACTIONS(1), + [aux_sym_requeue_statement_token1] = ACTIONS(1), + [aux_sym_accept_statement_token1] = ACTIONS(1), + [aux_sym_exit_statement_token1] = ACTIONS(1), + [aux_sym_goto_statement_token1] = ACTIONS(1), + [aux_sym_delay_until_statement_token1] = ACTIONS(1), + [aux_sym_delay_until_statement_token2] = ACTIONS(1), + [aux_sym_loop_statement_token1] = ACTIONS(1), + [aux_sym_iteration_scheme_token1] = ACTIONS(1), + [aux_sym_subtype_declaration_token1] = ACTIONS(1), + }, + [1] = { + [sym_compilation] = STATE(1872), + [sym_name] = STATE(895), + [sym_defining_identifier_list] = STATE(1422), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_compilation_unit] = STATE(2), + [sym__declarative_item] = STATE(372), + [sym__basic_declarative_item] = STATE(372), + [sym__basic_declaration] = STATE(372), + [sym__package_declaration] = STATE(372), + [sym_package_specification] = STATE(1868), + [sym_with_clause] = STATE(372), + [sym_use_clause] = STATE(372), + [sym_subunit] = STATE(372), + [sym_proper_body] = STATE(372), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(372), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(372), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(372), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_entry_declaration] = STATE(372), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(372), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(372), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(372), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_procedure_declaration] = STATE(372), + [sym_null_statement] = STATE(161), + [sym_number_declaration] = STATE(372), + [sym_object_declaration] = STATE(372), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(918), + [sym_pragma_g] = STATE(161), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(372), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(372), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [sym_subprogram_declaration] = STATE(372), + [sym_expression_function_declaration] = STATE(372), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(372), + [aux_sym_compilation_repeat1] = STATE(2), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(13), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_compilation_unit_token1] = ACTIONS(17), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_with_clause_token1] = ACTIONS(21), + [aux_sym_with_clause_token2] = ACTIONS(23), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(27), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_entry_declaration_token1] = ACTIONS(49), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [2] = { + [sym_name] = STATE(895), + [sym_defining_identifier_list] = STATE(1422), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_compilation_unit] = STATE(3), + [sym__declarative_item] = STATE(372), + [sym__basic_declarative_item] = STATE(372), + [sym__basic_declaration] = STATE(372), + [sym__package_declaration] = STATE(372), + [sym_package_specification] = STATE(1868), + [sym_with_clause] = STATE(372), + [sym_use_clause] = STATE(372), + [sym_subunit] = STATE(372), + [sym_proper_body] = STATE(372), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(372), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(372), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(372), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_entry_declaration] = STATE(372), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(372), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(372), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(372), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_procedure_declaration] = STATE(372), + [sym_null_statement] = STATE(161), + [sym_number_declaration] = STATE(372), + [sym_object_declaration] = STATE(372), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(918), + [sym_pragma_g] = STATE(161), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(372), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(372), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [sym_subprogram_declaration] = STATE(372), + [sym_expression_function_declaration] = STATE(372), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(372), + [aux_sym_compilation_repeat1] = STATE(3), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [ts_builtin_sym_end] = ACTIONS(83), + [sym_identifier] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(13), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_compilation_unit_token1] = ACTIONS(17), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_with_clause_token1] = ACTIONS(21), + [aux_sym_with_clause_token2] = ACTIONS(23), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(27), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_entry_declaration_token1] = ACTIONS(49), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [3] = { + [sym_name] = STATE(895), + [sym_defining_identifier_list] = STATE(1422), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_compilation_unit] = STATE(3), + [sym__declarative_item] = STATE(372), + [sym__basic_declarative_item] = STATE(372), + [sym__basic_declaration] = STATE(372), + [sym__package_declaration] = STATE(372), + [sym_package_specification] = STATE(1868), + [sym_with_clause] = STATE(372), + [sym_use_clause] = STATE(372), + [sym_subunit] = STATE(372), + [sym_proper_body] = STATE(372), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(372), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(372), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(372), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_entry_declaration] = STATE(372), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(372), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(372), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(372), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_procedure_declaration] = STATE(372), + [sym_null_statement] = STATE(161), + [sym_number_declaration] = STATE(372), + [sym_object_declaration] = STATE(372), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(918), + [sym_pragma_g] = STATE(161), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(372), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(372), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [sym_subprogram_declaration] = STATE(372), + [sym_expression_function_declaration] = STATE(372), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(372), + [aux_sym_compilation_repeat1] = STATE(3), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [ts_builtin_sym_end] = ACTIONS(85), + [sym_identifier] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(90), + [sym_character_literal] = ACTIONS(90), + [anon_sym_AT] = ACTIONS(90), + [anon_sym_LBRACK] = ACTIONS(93), + [aux_sym_iterated_element_association_token1] = ACTIONS(96), + [aux_sym_iterated_element_association_token2] = ACTIONS(99), + [aux_sym_compilation_unit_token1] = ACTIONS(102), + [aux_sym_package_specification_token1] = ACTIONS(105), + [aux_sym_with_clause_token1] = ACTIONS(108), + [aux_sym_with_clause_token2] = ACTIONS(111), + [aux_sym_use_clause_token2] = ACTIONS(114), + [aux_sym_subunit_token1] = ACTIONS(117), + [aux_sym_subprogram_body_token1] = ACTIONS(120), + [aux_sym_relation_token1] = ACTIONS(123), + [aux_sym_raise_expression_token1] = ACTIONS(126), + [aux_sym_primary_token1] = ACTIONS(129), + [aux_sym_access_type_definition_token1] = ACTIONS(132), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(135), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(138), + [aux_sym_declare_expression_token1] = ACTIONS(141), + [aux_sym_case_expression_token1] = ACTIONS(144), + [aux_sym_interface_type_definition_token1] = ACTIONS(147), + [aux_sym_entry_declaration_token1] = ACTIONS(150), + [aux_sym_generic_formal_part_token1] = ACTIONS(153), + [aux_sym_global_mode_token1] = ACTIONS(156), + [anon_sym_LT_LT] = ACTIONS(159), + [aux_sym_pragma_g_token1] = ACTIONS(162), + [aux_sym_if_expression_token1] = ACTIONS(165), + [aux_sym_result_profile_token1] = ACTIONS(168), + [aux_sym_asynchronous_select_token1] = ACTIONS(171), + [aux_sym_asynchronous_select_token2] = ACTIONS(174), + [aux_sym_requeue_statement_token1] = ACTIONS(177), + [aux_sym_accept_statement_token1] = ACTIONS(180), + [aux_sym_exit_statement_token1] = ACTIONS(183), + [aux_sym_goto_statement_token1] = ACTIONS(186), + [aux_sym_delay_until_statement_token1] = ACTIONS(189), + [aux_sym_loop_statement_token1] = ACTIONS(192), + [aux_sym_iteration_scheme_token1] = ACTIONS(195), + [aux_sym_subtype_declaration_token1] = ACTIONS(198), + }, + [4] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1466), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(205), + [aux_sym_subprogram_body_token1] = ACTIONS(207), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(209), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [5] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1712), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(211), + [aux_sym_subprogram_body_token1] = ACTIONS(213), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(215), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [6] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1426), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(217), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(219), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [7] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1394), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(221), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(223), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [8] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1466), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(207), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(209), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [9] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1845), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(225), + [aux_sym_subprogram_body_token1] = ACTIONS(227), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [10] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1712), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(213), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(215), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [11] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1778), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(229), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [12] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1811), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(231), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [13] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1481), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(233), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [14] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1466), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(207), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [15] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1712), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(213), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [16] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(17), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(235), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(235), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [17] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(17), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(237), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(240), + [aux_sym_iterated_element_association_token2] = ACTIONS(243), + [aux_sym_package_specification_token1] = ACTIONS(246), + [aux_sym_package_specification_token3] = ACTIONS(249), + [aux_sym_use_clause_token2] = ACTIONS(251), + [aux_sym_subprogram_body_token1] = ACTIONS(249), + [aux_sym_relation_token1] = ACTIONS(254), + [aux_sym_access_type_definition_token1] = ACTIONS(257), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(260), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(263), + [aux_sym_interface_type_definition_token1] = ACTIONS(266), + [aux_sym_generic_formal_part_token1] = ACTIONS(269), + [aux_sym_global_mode_token1] = ACTIONS(272), + [aux_sym_pragma_g_token1] = ACTIONS(275), + [aux_sym_subtype_declaration_token1] = ACTIONS(278), + }, + [18] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1799), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(281), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [19] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1845), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(227), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [20] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1721), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(283), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [21] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1594), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(285), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [22] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(606), + [sym__basic_declarative_item] = STATE(606), + [sym__basic_declaration] = STATE(606), + [sym__package_declaration] = STATE(606), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(606), + [sym_proper_body] = STATE(606), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(606), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(606), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(606), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1756), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(606), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(606), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(606), + [sym_null_procedure_declaration] = STATE(606), + [sym_number_declaration] = STATE(606), + [sym_object_declaration] = STATE(606), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(606), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(606), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(606), + [sym_expression_function_declaration] = STATE(606), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(606), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(287), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [23] = { + [sym_unary_adding_operator] = STATE(490), + [sym_name] = STATE(439), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_iterated_element_association] = STATE(1235), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_subtype_indication] = STATE(1379), + [sym_range_g] = STATE(1379), + [sym_expression] = STATE(915), + [sym_relation] = STATE(554), + [sym_raise_expression] = STATE(560), + [sym_simple_expression] = STATE(570), + [sym_term] = STATE(484), + [sym_factor] = STATE(451), + [sym__parenthesized_expression] = STATE(435), + [sym_primary] = STATE(457), + [sym_allocator] = STATE(435), + [sym_conditional_expression] = STATE(1610), + [sym_quantified_expression] = STATE(1610), + [sym_declare_expression] = STATE(1610), + [sym_case_expression] = STATE(1605), + [sym_component_choice_list] = STATE(1603), + [sym_aggregate] = STATE(435), + [sym_delta_aggregate] = STATE(186), + [sym_extension_aggregate] = STATE(186), + [sym_record_delta_aggregate] = STATE(185), + [sym_array_delta_aggregate] = STATE(185), + [sym_record_aggregate] = STATE(186), + [sym_record_component_association_list] = STATE(1599), + [sym__named_record_component_association] = STATE(1243), + [sym_null_exclusion] = STATE(769), + [sym_array_aggregate] = STATE(186), + [sym_positional_array_aggregate] = STATE(183), + [sym_null_array_aggregate] = STATE(183), + [sym_named_array_aggregate] = STATE(183), + [sym__array_component_association_list] = STATE(1597), + [sym_array_component_association] = STATE(1044), + [sym_discrete_choice_list] = STATE(1593), + [sym_discrete_choice] = STATE(1253), + [sym_extended_global_aspect_definition] = STATE(1342), + [sym_global_aspect_element] = STATE(1261), + [sym_global_mode] = STATE(704), + [sym_non_empty_mode] = STATE(817), + [sym_if_expression] = STATE(1605), + [sym_identifier] = ACTIONS(289), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(291), + [sym_character_literal] = ACTIONS(9), + [sym_numeric_literal] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(301), + [aux_sym_chunk_specification_token1] = ACTIONS(303), + [aux_sym_iterated_element_association_token1] = ACTIONS(305), + [aux_sym_iterated_element_association_token2] = ACTIONS(307), + [aux_sym_relation_token1] = ACTIONS(309), + [aux_sym_raise_expression_token1] = ACTIONS(311), + [aux_sym_factor_token1] = ACTIONS(313), + [aux_sym_primary_token1] = ACTIONS(315), + [aux_sym_allocator_token1] = ACTIONS(317), + [aux_sym_declare_expression_token1] = ACTIONS(319), + [aux_sym_case_expression_token1] = ACTIONS(321), + [aux_sym_positional_array_aggregate_token1] = ACTIONS(323), + [aux_sym_extended_global_aspect_definition_token1] = ACTIONS(325), + [aux_sym_global_mode_token1] = ACTIONS(327), + [aux_sym_non_empty_mode_token1] = ACTIONS(329), + [aux_sym_if_expression_token1] = ACTIONS(331), + }, + [24] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(26), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(25), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(25), + [aux_sym_sequence_of_statements_repeat2] = STATE(26), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_iterator_filter_token1] = ACTIONS(337), + [aux_sym_package_specification_token3] = ACTIONS(337), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(337), + [aux_sym_expression_token3] = ACTIONS(337), + [aux_sym_expression_token4] = ACTIONS(337), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [aux_sym_exception_declaration_token1] = ACTIONS(337), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_elsif_expression_item_token1] = ACTIONS(337), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [25] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(25), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(25), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(339), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(342), + [sym_character_literal] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(342), + [anon_sym_LBRACK] = ACTIONS(345), + [aux_sym_iterated_element_association_token1] = ACTIONS(348), + [aux_sym_iterator_filter_token1] = ACTIONS(351), + [aux_sym_package_specification_token3] = ACTIONS(351), + [aux_sym_subprogram_body_token1] = ACTIONS(353), + [aux_sym_expression_token2] = ACTIONS(351), + [aux_sym_expression_token3] = ACTIONS(351), + [aux_sym_expression_token4] = ACTIONS(351), + [aux_sym_raise_expression_token1] = ACTIONS(356), + [aux_sym_primary_token1] = ACTIONS(359), + [aux_sym_declare_expression_token1] = ACTIONS(362), + [aux_sym_case_expression_token1] = ACTIONS(365), + [aux_sym_exception_declaration_token1] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(368), + [aux_sym_pragma_g_token1] = ACTIONS(371), + [aux_sym_if_expression_token1] = ACTIONS(374), + [aux_sym_elsif_expression_item_token1] = ACTIONS(351), + [aux_sym_result_profile_token1] = ACTIONS(377), + [aux_sym_asynchronous_select_token1] = ACTIONS(380), + [aux_sym_asynchronous_select_token2] = ACTIONS(383), + [aux_sym_requeue_statement_token1] = ACTIONS(386), + [aux_sym_accept_statement_token1] = ACTIONS(389), + [aux_sym_exit_statement_token1] = ACTIONS(392), + [aux_sym_goto_statement_token1] = ACTIONS(395), + [aux_sym_delay_until_statement_token1] = ACTIONS(398), + [aux_sym_loop_statement_token1] = ACTIONS(401), + [aux_sym_iteration_scheme_token1] = ACTIONS(404), + }, + [26] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(487), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_simple_statement] = STATE(103), + [sym_compound_statement] = STATE(103), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat2] = STATE(487), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_iterator_filter_token1] = ACTIONS(407), + [aux_sym_package_specification_token3] = ACTIONS(407), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(407), + [aux_sym_expression_token3] = ACTIONS(407), + [aux_sym_expression_token4] = ACTIONS(407), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [aux_sym_exception_declaration_token1] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_elsif_expression_item_token1] = ACTIONS(407), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [27] = { + [sym_defining_identifier_list] = STATE(1422), + [sym__declarative_item] = STATE(366), + [sym__basic_declarative_item] = STATE(366), + [sym__basic_declaration] = STATE(366), + [sym__package_declaration] = STATE(366), + [sym_package_specification] = STATE(1868), + [sym_use_clause] = STATE(366), + [sym_proper_body] = STATE(366), + [sym_subprogram_body] = STATE(241), + [sym_package_body] = STATE(241), + [sym_type_declaration] = STATE(366), + [sym_full_type_declaration] = STATE(242), + [sym_private_type_declaration] = STATE(242), + [sym_private_extension_declaration] = STATE(242), + [sym_incomplete_type_declaration] = STATE(242), + [sym_aspect_clause] = STATE(366), + [sym_at_clause] = STATE(211), + [sym_attribute_definition_clause] = STATE(211), + [sym_body_stub] = STATE(366), + [sym_subprogram_body_stub] = STATE(245), + [sym_package_body_stub] = STATE(245), + [sym_task_body] = STATE(241), + [sym_task_body_stub] = STATE(245), + [sym_protected_type_declaration] = STATE(248), + [sym_single_protected_declaration] = STATE(249), + [sym_protected_body] = STATE(241), + [sym_protected_body_stub] = STATE(245), + [sym_enumeration_representation_clause] = STATE(211), + [sym_exception_declaration] = STATE(366), + [sym_function_specification] = STATE(1056), + [sym_generic_declaration] = STATE(366), + [sym_generic_formal_part] = STATE(903), + [sym_generic_subprogram_declaration] = STATE(256), + [sym_generic_package_declaration] = STATE(256), + [sym_generic_instantiation] = STATE(366), + [sym_null_procedure_declaration] = STATE(366), + [sym_number_declaration] = STATE(366), + [sym_object_declaration] = STATE(366), + [sym_single_task_declaration] = STATE(249), + [sym_task_type_declaration] = STATE(248), + [sym_overriding_indicator] = STATE(976), + [sym_procedure_specification] = STATE(1112), + [sym_record_representation_clause] = STATE(211), + [sym_renaming_declaration] = STATE(366), + [sym_object_renaming_declaration] = STATE(262), + [sym_exception_renaming_declaration] = STATE(262), + [sym_package_renaming_declaration] = STATE(262), + [sym_subprogram_renaming_declaration] = STATE(262), + [sym_generic_renaming_declaration] = STATE(262), + [sym_subprogram_declaration] = STATE(366), + [sym_expression_function_declaration] = STATE(366), + [sym_subprogram_specification] = STATE(958), + [sym_subtype_declaration] = STATE(366), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_with_clause_token2] = ACTIONS(409), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_token1] = ACTIONS(31), + [aux_sym_access_type_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [28] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1185), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_package_specification_token3] = ACTIONS(411), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(411), + [aux_sym_expression_token4] = ACTIONS(411), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [29] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1248), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(413), + [aux_sym_expression_token3] = ACTIONS(415), + [aux_sym_expression_token4] = ACTIONS(415), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [30] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1565), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [31] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1817), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [32] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1521), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [33] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1833), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [34] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1508), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [35] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1727), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [36] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1568), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [37] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1548), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [38] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1813), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_package_specification_token3] = ACTIONS(417), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [39] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1725), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [40] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1665), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [41] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(70), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(25), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(25), + [aux_sym_sequence_of_statements_repeat2] = STATE(70), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_iterator_filter_token1] = ACTIONS(337), + [aux_sym_package_specification_token3] = ACTIONS(337), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(337), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [42] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1776), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [43] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1823), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [44] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1808), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [45] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1679), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [46] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1479), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [47] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1652), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [48] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1595), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [49] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1698), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [50] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1638), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [51] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1622), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [52] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1529), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [53] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1802), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [54] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_handled_sequence_of_statements] = STATE(1779), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1314), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [55] = { + [sym_name] = STATE(895), + [sym_attribute_reference] = STATE(181), + [sym_reduction_attribute_reference] = STATE(170), + [sym_value_sequence] = STATE(1415), + [sym_function_call] = STATE(181), + [sym_qualified_expression] = STATE(181), + [sym_loop_label] = STATE(914), + [sym_label] = STATE(79), + [sym_null_statement] = STATE(161), + [sym_pragma_g] = STATE(161), + [sym_sequence_of_statements] = STATE(1526), + [sym_simple_statement] = STATE(151), + [sym_statement] = STATE(24), + [sym_compound_statement] = STATE(151), + [sym_select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(149), + [sym_conditional_entry_call] = STATE(149), + [sym_timed_entry_call] = STATE(149), + [sym_selective_accept] = STATE(149), + [sym_abort_statement] = STATE(161), + [sym_requeue_statement] = STATE(161), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym_delay_statement] = STATE(161), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(161), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(161), + [sym_raise_statement] = STATE(161), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1859), + [sym_assignment_statement] = STATE(161), + [aux_sym_sequence_of_statements_repeat1] = STATE(24), + [aux_sym_sequence_of_statements_repeat2] = STATE(79), + [sym_identifier] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(335), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(413), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1186), 1, + sym_sequence_of_statements, + STATE(1415), 1, + sym_value_sequence, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [139] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1742), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [278] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1440), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [417] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1513), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [556] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1704), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [695] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1561), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [834] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1018), 1, + sym_sequence_of_statements, + STATE(1415), 1, + sym_value_sequence, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [973] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1154), 1, + sym_sequence_of_statements, + STATE(1415), 1, + sym_value_sequence, + STATE(1859), 1, + sym_iteration_scheme, + STATE(41), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1112] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1803), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1251] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1810), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1390] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1659), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1529] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1480), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1668] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1668), 1, + sym_sequence_of_statements, + STATE(1859), 1, + sym_iteration_scheme, + STATE(24), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1807] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1142), 1, + sym_sequence_of_statements, + STATE(1415), 1, + sym_value_sequence, + STATE(1859), 1, + sym_iteration_scheme, + STATE(41), 2, + sym_statement, + aux_sym_sequence_of_statements_repeat1, + STATE(79), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(151), 2, + sym_simple_statement, + sym_compound_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [1946] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1859), 1, + sym_iteration_scheme, + STATE(103), 2, + sym_simple_statement, + sym_compound_statement, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(487), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + ACTIONS(407), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [2080] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(419), 1, + aux_sym_compilation_unit_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_package_specification_token3, + ACTIONS(425), 1, + aux_sym_allocator_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(76), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2208] = 47, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 1, + sym_identifier, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(293), 1, + sym_numeric_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(305), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(315), 1, + aux_sym_primary_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(319), 1, + aux_sym_declare_expression_token1, + ACTIONS(321), 1, + aux_sym_case_expression_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(331), 1, + aux_sym_if_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(915), 1, + sym_expression, + STATE(1044), 1, + sym_array_component_association, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1243), 1, + sym__named_record_component_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1593), 1, + sym_discrete_choice_list, + STATE(1597), 1, + sym__array_component_association_list, + STATE(1599), 1, + sym_record_component_association_list, + STATE(1603), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(1605), 2, + sym_case_expression, + sym_if_expression, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1610), 3, + sym_conditional_expression, + sym_quantified_expression, + sym_declare_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [2365] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(431), 1, + aux_sym_compilation_unit_token1, + ACTIONS(433), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(77), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2490] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(435), 1, + sym_identifier, + ACTIONS(438), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(446), 1, + aux_sym_package_specification_token1, + ACTIONS(449), 1, + aux_sym_use_clause_token2, + ACTIONS(452), 1, + aux_sym_relation_token1, + ACTIONS(455), 1, + aux_sym_access_type_definition_token1, + ACTIONS(458), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(461), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(464), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(467), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(470), 1, + aux_sym_global_mode_token1, + ACTIONS(473), 1, + aux_sym_pragma_g_token1, + ACTIONS(476), 1, + aux_sym_subtype_declaration_token1, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + ACTIONS(444), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(74), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2613] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(419), 1, + aux_sym_compilation_unit_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_package_specification_token3, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(76), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2738] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(431), 1, + aux_sym_compilation_unit_token1, + ACTIONS(433), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(74), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2863] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(479), 1, + aux_sym_compilation_unit_token1, + ACTIONS(481), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(74), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2988] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(483), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(74), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3110] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + aux_sym_subprogram_body_token1, + ACTIONS(33), 1, + aux_sym_raise_expression_token1, + ACTIONS(35), 1, + aux_sym_primary_token1, + ACTIONS(43), 1, + aux_sym_declare_expression_token1, + ACTIONS(45), 1, + aux_sym_case_expression_token1, + ACTIONS(55), 1, + anon_sym_LT_LT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(59), 1, + aux_sym_if_expression_token1, + ACTIONS(61), 1, + aux_sym_result_profile_token1, + ACTIONS(63), 1, + aux_sym_asynchronous_select_token1, + ACTIONS(65), 1, + aux_sym_asynchronous_select_token2, + ACTIONS(67), 1, + aux_sym_requeue_statement_token1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(71), 1, + aux_sym_exit_statement_token1, + ACTIONS(73), 1, + aux_sym_goto_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(77), 1, + aux_sym_loop_statement_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(333), 1, + sym_identifier, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(895), 1, + sym_name, + STATE(914), 1, + sym_loop_label, + STATE(1415), 1, + sym_value_sequence, + STATE(1859), 1, + sym_iteration_scheme, + STATE(103), 2, + sym_simple_statement, + sym_compound_statement, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(487), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(149), 4, + sym_asynchronous_select, + sym_conditional_entry_call, + sym_timed_entry_call, + sym_selective_accept, + STATE(150), 7, + sym_select_statement, + sym_accept_statement, + sym_case_statement, + sym_block_statement, + sym_if_statement, + sym_extended_return_statement, + sym_loop_statement, + STATE(161), 11, + sym_null_statement, + sym_pragma_g, + sym_abort_statement, + sym_requeue_statement, + sym_exit_statement, + sym_goto_statement, + sym_delay_statement, + sym_simple_return_statement, + sym_procedure_call_statement, + sym_raise_statement, + sym_assignment_statement, + [3242] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(481), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(74), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3364] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(481), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(83), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3486] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(485), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(78), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3608] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(485), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(74), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3730] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(421), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_access_type_definition_token1, + ACTIONS(429), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(433), 1, + aux_sym_package_specification_token3, + STATE(903), 1, + sym_generic_formal_part, + STATE(952), 1, + sym_subprogram_specification, + STATE(1005), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(1422), 1, + sym_defining_identifier_list, + STATE(1868), 1, + sym_package_specification, + STATE(248), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(256), 2, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(242), 4, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + STATE(262), 5, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + STATE(80), 19, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym_type_declaration, + sym_aspect_clause, + sym_exception_declaration, + sym_generic_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3852] = 41, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(319), 1, + aux_sym_declare_expression_token1, + ACTIONS(321), 1, + aux_sym_case_expression_token1, + ACTIONS(331), 1, + aux_sym_if_expression_token1, + ACTIONS(487), 1, + sym_identifier, + ACTIONS(489), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(491), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1151), 1, + sym_discrete_range, + STATE(1223), 1, + sym_parameter_association, + STATE(1364), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1500), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1417), 2, + sym_subtype_indication, + sym_range_g, + STATE(1605), 2, + sym_case_expression, + sym_if_expression, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1498), 3, + sym_conditional_expression, + sym_quantified_expression, + sym_declare_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [3992] = 40, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(319), 1, + aux_sym_declare_expression_token1, + ACTIONS(321), 1, + aux_sym_case_expression_token1, + ACTIONS(331), 1, + aux_sym_if_expression_token1, + ACTIONS(489), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(491), 1, + anon_sym_LT_GT, + ACTIONS(493), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1223), 1, + sym_parameter_association, + STATE(1294), 1, + sym_parameter_specification, + STATE(1364), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1500), 1, + sym_component_choice_list, + STATE(1552), 1, + sym_defining_identifier_list, + STATE(1566), 1, + sym_parameter_specification_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1605), 2, + sym_case_expression, + sym_if_expression, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1498), 3, + sym_conditional_expression, + sym_quantified_expression, + sym_declare_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4129] = 42, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 1, + sym_identifier, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(293), 1, + sym_numeric_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(315), 1, + aux_sym_primary_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1044), 1, + sym_array_component_association, + STATE(1221), 1, + sym_expression, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1243), 1, + sym__named_record_component_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1579), 1, + sym_record_component_association_list, + STATE(1593), 1, + sym_discrete_choice_list, + STATE(1603), 1, + sym_component_choice_list, + STATE(1628), 1, + sym__array_component_association_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4268] = 42, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 1, + sym_identifier, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(293), 1, + sym_numeric_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(315), 1, + aux_sym_primary_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(922), 1, + sym_expression, + STATE(1044), 1, + sym_array_component_association, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1243), 1, + sym__named_record_component_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1593), 1, + sym_discrete_choice_list, + STATE(1597), 1, + sym__array_component_association_list, + STATE(1599), 1, + sym_record_component_association_list, + STATE(1603), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4407] = 40, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(499), 1, + aux_sym_value_sequence_token1, + ACTIONS(501), 1, + anon_sym_RBRACK, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(916), 1, + sym_expression, + STATE(1044), 1, + sym_array_component_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1349), 1, + sym_iterated_element_association, + STATE(1415), 1, + sym_value_sequence, + STATE(1581), 1, + sym__array_component_association_list, + STATE(1593), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4541] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(319), 1, + aux_sym_declare_expression_token1, + ACTIONS(321), 1, + aux_sym_case_expression_token1, + ACTIONS(331), 1, + aux_sym_if_expression_token1, + ACTIONS(487), 1, + sym_identifier, + ACTIONS(489), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(491), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(524), 1, + sym_name, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1223), 1, + sym_parameter_association, + STATE(1364), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1500), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1605), 2, + sym_case_expression, + sym_if_expression, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1498), 3, + sym_conditional_expression, + sym_quantified_expression, + sym_declare_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4669] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(319), 1, + aux_sym_declare_expression_token1, + ACTIONS(321), 1, + aux_sym_case_expression_token1, + ACTIONS(331), 1, + aux_sym_if_expression_token1, + ACTIONS(487), 1, + sym_identifier, + ACTIONS(489), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(491), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1223), 1, + sym_parameter_association, + STATE(1364), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1500), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1605), 2, + sym_case_expression, + sym_if_expression, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1498), 3, + sym_conditional_expression, + sym_quantified_expression, + sym_declare_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4797] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(501), 1, + anon_sym_RBRACK, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(996), 1, + sym_expression, + STATE(1044), 1, + sym_array_component_association, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1581), 1, + sym__array_component_association_list, + STATE(1593), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [4928] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(501), 1, + anon_sym_RBRACK, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(916), 1, + sym_expression, + STATE(1044), 1, + sym_array_component_association, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1581), 1, + sym__array_component_association_list, + STATE(1593), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [5059] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1044), 1, + sym_array_component_association, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1593), 1, + sym_discrete_choice_list, + STATE(1619), 1, + sym__array_component_association_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1379), 3, + sym_subtype_indication, + sym_range_g, + sym_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [5185] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(303), 1, + aux_sym_chunk_specification_token1, + ACTIONS(307), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(325), 1, + aux_sym_extended_global_aspect_definition_token1, + ACTIONS(327), 1, + aux_sym_global_mode_token1, + ACTIONS(329), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(503), 1, + anon_sym_LPAREN, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(817), 1, + sym_non_empty_mode, + STATE(1070), 1, + sym_aspect_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1069), 2, + sym_expression, + sym_global_aspect_definition, + STATE(1071), 2, + sym_extended_global_aspect_definition, + sym_global_mode, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [5309] = 38, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1044), 1, + sym_array_component_association, + STATE(1072), 1, + sym_expression, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1593), 1, + sym_discrete_choice_list, + STATE(1597), 1, + sym__array_component_association_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1379), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [5437] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1197), 1, + sym_array_component_association, + STATE(1235), 1, + sym_iterated_element_association, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1593), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1379), 3, + sym_subtype_indication, + sym_range_g, + sym_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [5560] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(321), 1, + aux_sym_case_expression_token1, + ACTIONS(331), 1, + aux_sym_if_expression_token1, + ACTIONS(489), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(505), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1198), 1, + sym_pragma_argument_association, + STATE(1377), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1648), 1, + sym_conditional_quantified_expression, + STATE(1651), 1, + sym_aspect_mark, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1650), 3, + sym_quantified_expression, + sym_case_expression, + sym_if_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [5681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + sym_identifier, + ACTIONS(507), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(513), 1, + sym_identifier, + ACTIONS(511), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(517), 1, + sym_identifier, + ACTIONS(515), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(521), 1, + sym_identifier, + ACTIONS(519), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(525), 1, + sym_identifier, + ACTIONS(523), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + sym_identifier, + ACTIONS(527), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(533), 1, + sym_identifier, + ACTIONS(531), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(537), 1, + sym_identifier, + ACTIONS(535), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(539), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(543), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(547), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(551), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(557), 1, + sym_identifier, + ACTIONS(555), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(559), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(563), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(569), 1, + sym_identifier, + ACTIONS(567), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(573), 1, + sym_identifier, + ACTIONS(571), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(577), 1, + sym_identifier, + ACTIONS(575), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(581), 1, + sym_identifier, + ACTIONS(579), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(585), 1, + sym_identifier, + ACTIONS(583), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(589), 1, + sym_identifier, + ACTIONS(587), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(593), 1, + sym_identifier, + ACTIONS(591), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(597), 1, + sym_identifier, + ACTIONS(595), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(599), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(603), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(607), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(613), 1, + sym_identifier, + ACTIONS(611), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(617), 1, + sym_identifier, + ACTIONS(615), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(621), 1, + sym_identifier, + ACTIONS(619), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(623), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(629), 1, + sym_identifier, + ACTIONS(627), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(631), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(637), 1, + sym_identifier, + ACTIONS(635), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + sym_identifier, + ACTIONS(639), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(643), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(649), 1, + sym_identifier, + ACTIONS(647), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(653), 1, + sym_identifier, + ACTIONS(651), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(657), 1, + sym_identifier, + ACTIONS(655), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(659), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(665), 1, + sym_identifier, + ACTIONS(663), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(667), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(673), 1, + sym_identifier, + ACTIONS(671), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(677), 1, + sym_identifier, + ACTIONS(675), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(681), 1, + sym_identifier, + ACTIONS(679), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(685), 1, + sym_identifier, + ACTIONS(683), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(687), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(693), 1, + sym_identifier, + ACTIONS(691), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(697), 1, + sym_identifier, + ACTIONS(695), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(701), 1, + sym_identifier, + ACTIONS(699), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(705), 1, + sym_identifier, + ACTIONS(703), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 1, + sym_identifier, + ACTIONS(707), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(711), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(715), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(721), 1, + sym_identifier, + ACTIONS(719), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(725), 1, + sym_identifier, + ACTIONS(723), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(729), 1, + sym_identifier, + ACTIONS(727), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(733), 1, + sym_identifier, + ACTIONS(731), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(737), 1, + sym_identifier, + ACTIONS(735), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(741), 1, + sym_identifier, + ACTIONS(739), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + sym_identifier, + ACTIONS(743), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(747), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(751), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(757), 1, + sym_identifier, + ACTIONS(755), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(761), 1, + sym_identifier, + ACTIONS(759), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9265] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(767), 1, + anon_sym_SQUOTE, + ACTIONS(770), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(763), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(765), 37, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9328] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1478), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1379), 3, + sym_subtype_indication, + sym_range_g, + sym_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [9442] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1699), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1379), 3, + sym_subtype_indication, + sym_range_g, + sym_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [9556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(777), 1, + anon_sym_DOT, + ACTIONS(773), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9612] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1253), 1, + sym_discrete_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1860), 1, + sym_discrete_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1379), 3, + sym_subtype_indication, + sym_range_g, + sym_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [9726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(779), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(781), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(783), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(785), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(787), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(789), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(791), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(793), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(795), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(797), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [9991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(799), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(801), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(805), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(807), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(809), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(811), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(813), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(815), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(817), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(819), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(821), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(823), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(825), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(829), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(773), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(831), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(833), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(835), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(837), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(839), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(841), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(843), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(845), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(849), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(853), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(855), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(857), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(859), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(861), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(865), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(867), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(869), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [10998] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(323), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(439), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(570), 1, + sym_simple_expression, + STATE(769), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1425), 1, + sym_discrete_choice, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(1379), 3, + sym_subtype_indication, + sym_range_g, + sym_expression, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [11109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(871), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [11162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(877), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_loop_statement_token1, + [11215] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(438), 1, + sym_index_constraint, + STATE(585), 1, + sym_tick, + ACTIONS(879), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(881), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [11277] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(293), 1, + sym_numeric_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(315), 1, + aux_sym_primary_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(487), 1, + sym_identifier, + ACTIONS(887), 1, + aux_sym_attribute_designator_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1243), 1, + sym__named_record_component_association, + STATE(1415), 1, + sym_value_sequence, + STATE(1603), 1, + sym_component_choice_list, + STATE(1864), 1, + sym_record_component_association_list, + STATE(1865), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [11389] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(440), 1, + sym_index_constraint, + STATE(585), 1, + sym_tick, + ACTIONS(889), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(891), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [11451] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(893), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(529), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1294), 1, + sym_parameter_specification, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + STATE(1552), 1, + sym_defining_identifier_list, + STATE(1566), 1, + sym_parameter_specification_list, + STATE(1772), 1, + sym_discrete_subtype_definition, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [11558] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(893), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1294), 1, + sym_parameter_specification, + STATE(1415), 1, + sym_value_sequence, + STATE(1552), 1, + sym_defining_identifier_list, + STATE(1566), 1, + sym_parameter_specification_list, + STATE(1677), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [11665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(899), 1, + sym_identifier, + ACTIONS(897), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [11716] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [11775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 1, + sym_identifier, + ACTIONS(907), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [11826] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(487), 1, + sym_identifier, + ACTIONS(911), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1049), 1, + sym_expression, + STATE(1167), 1, + sym__named_record_component_association, + STATE(1415), 1, + sym_value_sequence, + STATE(1603), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [11933] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(528), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1225), 1, + sym_index_subtype_definition, + STATE(1228), 1, + sym_discrete_subtype_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + STATE(1785), 1, + sym__index_subtype_definition_list, + STATE(1788), 1, + sym__discrete_subtype_definition_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [12040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + sym_identifier, + ACTIONS(913), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(919), 1, + sym_identifier, + ACTIONS(917), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + sym_identifier, + ACTIONS(921), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 1, + sym_identifier, + ACTIONS(925), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12244] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(893), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(529), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1294), 1, + sym_parameter_specification, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + STATE(1552), 1, + sym_defining_identifier_list, + STATE(1566), 1, + sym_parameter_specification_list, + STATE(1637), 1, + sym_discrete_subtype_definition, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [12351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 1, + sym_identifier, + ACTIONS(929), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(933), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12453] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(487), 1, + sym_identifier, + ACTIONS(491), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1356), 1, + sym_parameter_association, + STATE(1364), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1500), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [12560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 1, + sym_identifier, + ACTIONS(937), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, + sym_identifier, + ACTIONS(941), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(947), 1, + sym_identifier, + ACTIONS(945), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 1, + sym_identifier, + ACTIONS(949), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(955), 1, + sym_identifier, + ACTIONS(953), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(959), 1, + sym_identifier, + ACTIONS(957), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(963), 1, + sym_identifier, + ACTIONS(961), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(967), 1, + sym_identifier, + ACTIONS(965), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(971), 1, + sym_identifier, + ACTIONS(969), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(975), 1, + sym_identifier, + ACTIONS(973), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(979), 1, + sym_identifier, + ACTIONS(977), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13110] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(487), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1603), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1434), 2, + sym_expression, + sym__named_record_component_association, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [13212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + sym_identifier, + ACTIONS(981), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(987), 1, + sym_identifier, + ACTIONS(985), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(989), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(995), 1, + sym_identifier, + ACTIONS(993), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 1, + sym_identifier, + ACTIONS(997), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1003), 1, + sym_identifier, + ACTIONS(1001), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, + sym_identifier, + ACTIONS(1005), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1011), 1, + sym_identifier, + ACTIONS(1009), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 1, + sym_identifier, + ACTIONS(1013), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 1, + sym_identifier, + ACTIONS(1017), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 1, + sym_identifier, + ACTIONS(1021), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1027), 1, + sym_identifier, + ACTIONS(1025), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13812] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(487), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1603), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1167), 2, + sym_expression, + sym__named_record_component_association, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [13914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1031), 1, + sym_identifier, + ACTIONS(1029), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1035), 1, + sym_identifier, + ACTIONS(1033), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1039), 1, + sym_identifier, + ACTIONS(1037), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 1, + sym_identifier, + ACTIONS(1041), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 1, + sym_identifier, + ACTIONS(1045), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1049), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 1, + sym_identifier, + ACTIONS(1053), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1059), 1, + sym_identifier, + ACTIONS(1057), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 1, + sym_identifier, + ACTIONS(1061), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1067), 1, + sym_identifier, + ACTIONS(1065), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1069), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1075), 1, + sym_identifier, + ACTIONS(1073), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 1, + sym_identifier, + ACTIONS(1077), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1083), 1, + sym_identifier, + ACTIONS(1081), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1087), 1, + sym_identifier, + ACTIONS(1085), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1091), 1, + sym_identifier, + ACTIONS(1089), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 1, + sym_identifier, + ACTIONS(1093), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1097), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1103), 1, + sym_identifier, + ACTIONS(1101), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1105), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1111), 1, + sym_identifier, + ACTIONS(1109), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1113), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1117), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1123), 1, + sym_identifier, + ACTIONS(1121), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1127), 1, + sym_identifier, + ACTIONS(1125), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1129), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1133), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1137), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1143), 1, + sym_identifier, + ACTIONS(1141), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15364] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(505), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1318), 1, + sym_pragma_argument_association, + STATE(1377), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1651), 1, + sym_aspect_mark, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [15468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1145), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1151), 1, + sym_identifier, + ACTIONS(1149), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1153), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1157), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1163), 1, + sym_identifier, + ACTIONS(1161), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + sym_identifier, + ACTIONS(1165), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 1, + sym_identifier, + ACTIONS(1169), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 1, + sym_identifier, + ACTIONS(1173), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(1177), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1183), 1, + sym_identifier, + ACTIONS(1181), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 1, + sym_identifier, + ACTIONS(1185), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_identifier, + ACTIONS(1189), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1195), 1, + sym_identifier, + ACTIONS(1193), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1199), 1, + sym_identifier, + ACTIONS(1197), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1201), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1205), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1209), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1213), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1219), 1, + sym_identifier, + ACTIONS(1217), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1223), 1, + sym_identifier, + ACTIONS(1221), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1227), 1, + sym_identifier, + ACTIONS(1225), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 1, + sym_identifier, + ACTIONS(1229), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1233), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1237), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1241), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 1, + sym_identifier, + ACTIONS(1245), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1249), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 1, + sym_identifier, + ACTIONS(1253), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1257), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1261), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1267), 1, + sym_identifier, + ACTIONS(1265), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1269), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1273), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1279), 1, + sym_identifier, + ACTIONS(1277), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + sym_identifier, + ACTIONS(1281), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 1, + sym_identifier, + ACTIONS(1285), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1289), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1293), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1299), 1, + sym_identifier, + ACTIONS(1297), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1303), 1, + sym_identifier, + ACTIONS(1301), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1305), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1309), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1315), 1, + sym_identifier, + ACTIONS(1313), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 1, + sym_identifier, + ACTIONS(1317), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1321), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1325), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1329), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1335), 1, + sym_identifier, + ACTIONS(1333), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1339), 1, + sym_identifier, + ACTIONS(1337), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 1, + sym_identifier, + ACTIONS(1341), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17968] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(487), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1433), 1, + sym_expression, + STATE(1434), 1, + sym__named_record_component_association, + STATE(1603), 1, + sym_component_choice_list, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [18072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1345), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18122] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(1349), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1383), 1, + sym_extended_return_object_declaration, + STATE(1415), 1, + sym_value_sequence, + STATE(1771), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [18226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1355), 1, + sym_identifier, + ACTIONS(1353), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 1, + sym_identifier, + ACTIONS(1357), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + sym_identifier, + ACTIONS(1361), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1365), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1369), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1373), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1377), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1383), 1, + sym_identifier, + ACTIONS(1381), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1387), 1, + sym_identifier, + ACTIONS(1385), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(1389), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1393), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1399), 1, + sym_identifier, + ACTIONS(1397), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1401), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 1, + sym_identifier, + ACTIONS(1405), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1411), 1, + sym_identifier, + ACTIONS(1409), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1415), 1, + sym_identifier, + ACTIONS(1413), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 1, + sym_identifier, + ACTIONS(1417), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1421), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1425), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1431), 1, + sym_identifier, + ACTIONS(1429), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1435), 1, + sym_identifier, + ACTIONS(1433), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1439), 1, + sym_identifier, + ACTIONS(1437), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(775), 5, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_range_attribute_designator_token1, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 31, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [19378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 1, + sym_identifier, + ACTIONS(1441), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1447), 1, + sym_identifier, + ACTIONS(1445), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 1, + sym_identifier, + ACTIONS(1449), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1453), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + sym_identifier, + ACTIONS(1457), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1463), 1, + sym_identifier, + ACTIONS(1461), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_identifier, + ACTIONS(1465), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + sym_identifier, + ACTIONS(1469), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1475), 1, + sym_identifier, + ACTIONS(1473), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1477), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1481), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1487), 1, + sym_identifier, + ACTIONS(1485), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 1, + sym_identifier, + ACTIONS(1489), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 1, + sym_identifier, + ACTIONS(1493), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 1, + sym_identifier, + ACTIONS(1497), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20128] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1501), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1396), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20229] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1503), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1627), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20330] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1505), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1626), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20431] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1507), 1, + aux_sym_delay_until_statement_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1743), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20532] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1509), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1465), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20633] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1511), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1206), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20734] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1513), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1362), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + sym_identifier, + ACTIONS(1515), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20884] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1519), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1457), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [20985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 1, + sym_identifier, + ACTIONS(1521), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21034] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1525), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1206), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1529), 1, + sym_identifier, + ACTIONS(1527), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21184] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + ACTIONS(1531), 1, + aux_sym_loop_parameter_specification_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(513), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(998), 1, + sym_discrete_subtype_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 1, + sym_identifier, + ACTIONS(1533), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1537), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1541), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21432] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1545), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1206), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21533] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1547), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1200), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21634] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(911), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1240), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(1549), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21784] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1728), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21882] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1553), 1, + aux_sym_expression_token4, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(560), 1, + sym_raise_expression, + STATE(577), 1, + sym_relation, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [21980] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1681), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22078] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1797), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22176] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1206), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22274] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1477), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22372] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1549), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22470] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(607), 1, + sym_simple_expression, + STATE(814), 1, + sym_relation, + STATE(1415), 1, + sym_value_sequence, + STATE(1514), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22568] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1519), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22666] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1560), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22764] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1534), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22862] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1753), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [22960] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + ACTIONS(1561), 1, + aux_sym_expression_token4, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(577), 1, + sym_relation, + STATE(607), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23058] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1110), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23156] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1408), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23254] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1773), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23352] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(512), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(994), 1, + sym_discrete_subtype_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23450] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1178), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23548] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(529), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + STATE(1748), 1, + sym_discrete_subtype_definition, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23646] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1308), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23744] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1746), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23842] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1456), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [23940] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1320), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24038] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(529), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1430), 1, + sym_discrete_range, + STATE(1489), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1417), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24136] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1563), 1, + aux_sym_expression_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(560), 1, + sym_raise_expression, + STATE(578), 1, + sym_relation, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24234] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1871), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24332] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1608), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24430] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1247), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24528] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(607), 1, + sym_simple_expression, + STATE(814), 1, + sym_relation, + STATE(1034), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24626] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1024), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24724] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1736), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24822] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1643), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [24920] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1598), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25018] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1226), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25116] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1741), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25214] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1646), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25312] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(529), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1330), 1, + sym_discrete_subtype_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25410] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1620), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25508] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1516), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25606] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1621), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25704] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1169), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25802] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1517), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25900] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(554), 1, + sym_relation, + STATE(560), 1, + sym_raise_expression, + STATE(1415), 1, + sym_value_sequence, + STATE(1537), 1, + sym_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [25998] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(607), 1, + sym_simple_expression, + STATE(814), 1, + sym_relation, + STATE(1262), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26096] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(607), 1, + sym_simple_expression, + STATE(814), 1, + sym_relation, + STATE(1064), 1, + sym_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26194] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + aux_sym_relation_token1, + ACTIONS(313), 1, + aux_sym_factor_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(895), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(529), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + STATE(1807), 1, + sym_discrete_subtype_definition, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(934), 2, + sym_subtype_indication, + sym_range_g, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26292] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + ACTIONS(1565), 1, + aux_sym_expression_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(578), 1, + sym_relation, + STATE(607), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26390] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(486), 1, + sym_name, + STATE(490), 1, + sym_unary_adding_operator, + STATE(566), 1, + sym_range_g, + STATE(569), 1, + sym_membership_choice_list, + STATE(572), 1, + sym_simple_expression, + STATE(573), 1, + sym_membership_choice, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26485] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(560), 1, + sym_raise_expression, + STATE(580), 1, + sym_relation, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1569), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [26627] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(580), 1, + sym_relation, + STATE(607), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26722] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(486), 1, + sym_name, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(565), 1, + sym_membership_choice_list, + STATE(566), 1, + sym_range_g, + STATE(823), 1, + sym_membership_choice, + STATE(825), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [26817] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 1, + anon_sym_LPAREN, + ACTIONS(1573), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1575), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1577), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1579), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1581), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1583), 1, + aux_sym_with_clause_token1, + ACTIONS(1585), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1591), 1, + aux_sym_allocator_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1597), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1599), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1601), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1605), 1, + aux_sym_interface_type_definition_token2, + STATE(1269), 1, + sym_access_to_object_definition, + STATE(1271), 1, + sym_type_definition, + STATE(1332), 1, + sym_record_definition, + STATE(1338), 1, + sym_null_exclusion, + ACTIONS(1593), 2, + aux_sym_access_type_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + STATE(1334), 2, + sym_floating_point_definition, + sym_fixed_point_definition, + STATE(1335), 2, + sym_modular_type_definition, + sym_signed_integer_type_definition, + STATE(1354), 2, + sym_decimal_fixed_point_definition, + sym_ordinary_fixed_point_definition, + STATE(1344), 8, + sym_access_type_definition, + sym_array_type_definition, + sym_enumeration_type_definition, + sym_integer_type_definition, + sym_real_type_definition, + sym_derived_type_definition, + sym_interface_type_definition, + sym_record_type_definition, + [26914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1607), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [26961] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(586), 1, + sym_relation, + STATE(607), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [27056] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + ACTIONS(1559), 1, + aux_sym_raise_expression_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(560), 1, + sym_raise_expression, + STATE(587), 1, + sym_relation, + STATE(607), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [27151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1611), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1617), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1619), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27339] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(567), 1, + sym_tick, + STATE(613), 1, + sym_constraint, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 20, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + [27406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(879), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(881), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27453] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(486), 1, + sym_name, + STATE(490), 1, + sym_unary_adding_operator, + STATE(565), 1, + sym_membership_choice_list, + STATE(566), 1, + sym_range_g, + STATE(572), 1, + sym_simple_expression, + STATE(573), 1, + sym_membership_choice, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [27548] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(486), 1, + sym_name, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(566), 1, + sym_range_g, + STATE(569), 1, + sym_membership_choice_list, + STATE(823), 1, + sym_membership_choice, + STATE(825), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [27643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1629), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1631), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27690] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(560), 1, + sym_raise_expression, + STATE(586), 1, + sym_relation, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [27785] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(311), 1, + aux_sym_raise_expression_token1, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(511), 1, + sym_simple_expression, + STATE(560), 1, + sym_raise_expression, + STATE(587), 1, + sym_relation, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [27880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1633), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1635), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [27926] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(486), 1, + sym_name, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(564), 1, + sym_membership_choice, + STATE(566), 1, + sym_range_g, + STATE(825), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [28018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1637), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1639), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [28064] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 1, + anon_sym_SLASH, + STATE(449), 1, + aux_sym_term_repeat1, + STATE(495), 1, + sym_multiplying_operator, + ACTIONS(1641), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1633), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1635), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [28118] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(486), 1, + sym_name, + STATE(490), 1, + sym_unary_adding_operator, + STATE(564), 1, + sym_membership_choice, + STATE(566), 1, + sym_range_g, + STATE(572), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [28210] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_SLASH, + STATE(452), 1, + aux_sym_term_repeat1, + STATE(495), 1, + sym_multiplying_operator, + ACTIONS(1651), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1647), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1649), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [28264] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_SLASH, + STATE(449), 1, + aux_sym_term_repeat1, + STATE(495), 1, + sym_multiplying_operator, + ACTIONS(1651), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1655), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1657), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [28318] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1659), 1, + anon_sym_LT_GT, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(486), 1, + sym_name, + STATE(490), 1, + sym_unary_adding_operator, + STATE(609), 1, + sym_range_g, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [28410] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 1, + anon_sym_LPAREN, + ACTIONS(1573), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1575), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1577), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1579), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1585), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1605), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1661), 1, + aux_sym_with_clause_token1, + ACTIONS(1663), 1, + aux_sym_allocator_token1, + ACTIONS(1665), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1667), 1, + aux_sym_private_type_declaration_token2, + STATE(1229), 1, + sym_type_definition, + STATE(1269), 1, + sym_access_to_object_definition, + STATE(1332), 1, + sym_record_definition, + STATE(1338), 1, + sym_null_exclusion, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + STATE(1334), 2, + sym_floating_point_definition, + sym_fixed_point_definition, + STATE(1335), 2, + sym_modular_type_definition, + sym_signed_integer_type_definition, + STATE(1354), 2, + sym_decimal_fixed_point_definition, + sym_ordinary_fixed_point_definition, + ACTIONS(1593), 3, + aux_sym_access_type_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1344), 8, + sym_access_type_definition, + sym_array_type_definition, + sym_enumeration_type_definition, + sym_integer_type_definition, + sym_real_type_definition, + sym_derived_type_definition, + sym_interface_type_definition, + sym_record_type_definition, + [28502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1671), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [28548] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(486), 1, + sym_name, + STATE(490), 1, + sym_unary_adding_operator, + STATE(609), 1, + sym_range_g, + STATE(1415), 1, + sym_value_sequence, + STATE(1489), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [28637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_STAR_STAR, + ACTIONS(1673), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [28684] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(1679), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1415), 1, + sym_value_sequence, + STATE(1463), 1, + sym_simple_expression, + STATE(1468), 1, + sym_chunk_specification, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [28773] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1415), 1, + sym_value_sequence, + STATE(1435), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [28859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [28905] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1573), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1605), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1683), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1685), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1687), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1689), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1691), 1, + aux_sym_with_clause_token1, + ACTIONS(1693), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1695), 1, + aux_sym_allocator_token1, + ACTIONS(1697), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1699), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1701), 1, + aux_sym_private_extension_declaration_token1, + STATE(1087), 1, + sym_formal_type_definition, + STATE(1269), 1, + sym_access_to_object_definition, + STATE(1276), 1, + sym_access_type_definition, + STATE(1278), 1, + sym_array_type_definition, + STATE(1286), 1, + sym_interface_type_definition, + STATE(1338), 1, + sym_null_exclusion, + ACTIONS(1593), 2, + aux_sym_access_type_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + STATE(1296), 11, + sym_formal_private_type_definition, + sym_formal_derived_type_definition, + sym_formal_discrete_type_definition, + sym_formal_signed_integer_type_definition, + sym_formal_modular_type_definition, + sym_formal_floating_point_definition, + sym_formal_ordinary_fixed_point_definition, + sym_formal_decimal_fixed_point_definition, + sym_formal_array_type_definition, + sym_formal_access_type_definition, + sym_formal_interface_type_definition, + [28993] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1415), 1, + sym_value_sequence, + STATE(1495), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29079] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(540), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29165] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(562), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29251] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1415), 1, + sym_value_sequence, + STATE(1870), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29337] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(540), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29423] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1415), 1, + sym_value_sequence, + STATE(1798), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29509] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(594), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29595] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(565), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29681] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(565), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29767] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(488), 1, + sym_unary_adding_operator, + STATE(497), 1, + sym_term, + STATE(589), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [29853] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1573), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1605), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1683), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1685), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1687), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1689), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1691), 1, + aux_sym_with_clause_token1, + ACTIONS(1693), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1695), 1, + aux_sym_allocator_token1, + ACTIONS(1697), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1701), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1703), 1, + aux_sym_private_type_declaration_token2, + STATE(1066), 1, + sym_formal_type_definition, + STATE(1269), 1, + sym_access_to_object_definition, + STATE(1276), 1, + sym_access_type_definition, + STATE(1278), 1, + sym_array_type_definition, + STATE(1286), 1, + sym_interface_type_definition, + STATE(1338), 1, + sym_null_exclusion, + ACTIONS(1593), 2, + aux_sym_access_type_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + STATE(1296), 11, + sym_formal_private_type_definition, + sym_formal_derived_type_definition, + sym_formal_discrete_type_definition, + sym_formal_signed_integer_type_definition, + sym_formal_modular_type_definition, + sym_formal_floating_point_definition, + sym_formal_ordinary_fixed_point_definition, + sym_formal_decimal_fixed_point_definition, + sym_formal_array_type_definition, + sym_formal_access_type_definition, + sym_formal_interface_type_definition, + [29941] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(562), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [30027] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1415), 1, + sym_value_sequence, + STATE(1686), 1, + sym_simple_expression, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [30113] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(295), 1, + anon_sym_PLUS, + ACTIONS(297), 1, + anon_sym_DASH, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(484), 1, + sym_term, + STATE(490), 1, + sym_unary_adding_operator, + STATE(1387), 1, + sym_simple_expression, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [30199] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 1, + anon_sym_SLASH, + STATE(476), 1, + aux_sym_term_repeat1, + STATE(498), 1, + sym_multiplying_operator, + ACTIONS(1641), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1633), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1635), 25, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [30250] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_SLASH, + STATE(478), 1, + aux_sym_term_repeat1, + STATE(498), 1, + sym_multiplying_operator, + ACTIONS(1651), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1647), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1649), 25, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [30301] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_SLASH, + STATE(476), 1, + aux_sym_term_repeat1, + STATE(498), 1, + sym_multiplying_operator, + ACTIONS(1651), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1655), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1657), 25, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [30352] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_STAR_STAR, + ACTIONS(1673), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 27, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [30396] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(481), 1, + aux_sym_simple_expression_repeat1, + STATE(489), 1, + sym_binary_adding_operator, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1707), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 26, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30446] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1722), 1, + anon_sym_DASH, + STATE(481), 1, + aux_sym_simple_expression_repeat1, + STATE(489), 1, + sym_binary_adding_operator, + ACTIONS(1719), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1715), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 26, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1715), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1717), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30538] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(485), 1, + aux_sym_simple_expression_repeat1, + STATE(489), 1, + sym_binary_adding_operator, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1707), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 26, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30588] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(480), 1, + aux_sym_simple_expression_repeat1, + STATE(489), 1, + sym_binary_adding_operator, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1725), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1727), 26, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30638] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(481), 1, + aux_sym_simple_expression_repeat1, + STATE(489), 1, + sym_binary_adding_operator, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1729), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1731), 26, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30688] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(567), 1, + sym_tick, + ACTIONS(901), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(903), 27, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_STAR_STAR, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [30737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1737), 1, + anon_sym_LT_LT, + STATE(487), 2, + sym_label, + aux_sym_sequence_of_statements_repeat2, + ACTIONS(1735), 29, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_exception_declaration_token1, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [30782] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(494), 1, + sym_term, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [30856] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(482), 1, + sym_term, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [30930] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(451), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(483), 1, + sym_term, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31004] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(777), 1, + anon_sym_DOT, + ACTIONS(1740), 1, + anon_sym_EQ_GT, + ACTIONS(1743), 1, + anon_sym_PIPE, + STATE(1274), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(773), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 22, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [31052] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(477), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(482), 1, + sym_term, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31126] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(777), 1, + anon_sym_DOT, + ACTIONS(1746), 1, + anon_sym_EQ_GT, + ACTIONS(1748), 1, + anon_sym_PIPE, + STATE(1274), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(773), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 21, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [31173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(492), 1, + sym_binary_adding_operator, + STATE(499), 1, + aux_sym_simple_expression_repeat1, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1707), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 23, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [31220] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(446), 1, + sym_factor, + STATE(457), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(313), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31291] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1722), 1, + anon_sym_DASH, + STATE(492), 1, + sym_binary_adding_operator, + STATE(496), 1, + aux_sym_simple_expression_repeat1, + ACTIONS(1719), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1715), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 23, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [31338] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(492), 1, + sym_binary_adding_operator, + STATE(500), 1, + aux_sym_simple_expression_repeat1, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1725), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1727), 23, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [31385] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(446), 1, + sym_factor, + STATE(479), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + ACTIONS(1557), 2, + aux_sym_relation_token1, + aux_sym_factor_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31456] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(492), 1, + sym_binary_adding_operator, + STATE(496), 1, + aux_sym_simple_expression_repeat1, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1729), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1731), 23, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [31503] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_DASH, + STATE(492), 1, + sym_binary_adding_operator, + STATE(496), 1, + aux_sym_simple_expression_repeat1, + ACTIONS(1711), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1707), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 23, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [31550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_identifier, + ACTIONS(1752), 30, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_raise_expression_token1, + aux_sym_primary_token1, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_exception_declaration_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [31589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1754), 1, + sym_identifier, + ACTIONS(1756), 4, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + ACTIONS(901), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + ACTIONS(903), 18, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + [31631] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(777), 1, + anon_sym_DOT, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(1760), 1, + anon_sym_COLON, + STATE(1108), 1, + aux_sym_defining_identifier_list_repeat1, + ACTIONS(773), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 21, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [31677] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_EQ_GT, + ACTIONS(1748), 1, + anon_sym_PIPE, + ACTIONS(1760), 1, + anon_sym_COLON, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(1764), 1, + anon_sym_COMMA, + STATE(1108), 1, + aux_sym_defining_identifier_list_repeat1, + STATE(1274), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(773), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 16, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [31728] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(455), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31792] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(620), 1, + sym_constraint, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1767), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [31846] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(448), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31910] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(448), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [31974] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + sym_string_literal, + ACTIONS(293), 1, + sym_numeric_literal, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1769), 1, + aux_sym_primary_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(455), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [32040] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(301), 1, + anon_sym_LBRACK, + ACTIONS(317), 1, + aux_sym_allocator_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1555), 1, + sym_string_literal, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(201), 1, + sym_name, + STATE(455), 1, + sym_primary, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + ACTIONS(293), 2, + sym_numeric_literal, + aux_sym_primary_token1, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(435), 3, + sym__parenthesized_expression, + sym_allocator, + sym_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [32104] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1777), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1779), 1, + aux_sym_relation_token1, + STATE(470), 1, + sym_relational_operator, + ACTIONS(1771), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1773), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1775), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [32147] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1784), 1, + aux_sym_iterator_filter_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(567), 1, + sym_tick, + STATE(613), 1, + sym_constraint, + STATE(1177), 1, + sym_iterator_filter, + ACTIONS(901), 2, + anon_sym_DASH, + anon_sym_STAR, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + ACTIONS(1781), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(903), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32208] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1784), 1, + aux_sym_iterator_filter_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(567), 1, + sym_tick, + STATE(613), 1, + sym_constraint, + STATE(1179), 1, + sym_iterator_filter, + ACTIONS(901), 2, + anon_sym_DASH, + anon_sym_STAR, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + ACTIONS(1787), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(903), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32269] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(1790), 1, + anon_sym_SQUOTE, + ACTIONS(1793), 1, + anon_sym_EQ_GT, + STATE(1730), 1, + sym_tick, + ACTIONS(773), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 16, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [32311] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + aux_sym_package_specification_token3, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(518), 2, + sym_protected_element_declaration, + aux_sym_protected_definition_repeat2, + STATE(820), 2, + sym_component_declaration, + sym_protected_operation_declaration, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32375] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1803), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(518), 2, + sym_protected_element_declaration, + aux_sym_protected_definition_repeat2, + STATE(820), 2, + sym_component_declaration, + sym_protected_operation_declaration, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32439] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + aux_sym_package_specification_token3, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(516), 2, + sym_protected_element_declaration, + aux_sym_protected_definition_repeat2, + STATE(820), 2, + sym_component_declaration, + sym_protected_operation_declaration, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32503] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, + sym_identifier, + ACTIONS(1808), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1811), 1, + aux_sym_package_specification_token3, + ACTIONS(1813), 1, + aux_sym_relation_token1, + ACTIONS(1816), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1819), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1822), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1825), 1, + aux_sym_global_mode_token1, + ACTIONS(1828), 1, + aux_sym_pragma_g_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(518), 2, + sym_protected_element_declaration, + aux_sym_protected_definition_repeat2, + STATE(820), 2, + sym_component_declaration, + sym_protected_operation_declaration, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 19, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + [32603] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1833), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(515), 2, + sym_protected_element_declaration, + aux_sym_protected_definition_repeat2, + STATE(820), 2, + sym_component_declaration, + sym_protected_operation_declaration, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32667] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + ACTIONS(1839), 1, + aux_sym_allocator_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1543), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32730] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + ACTIONS(1841), 1, + aux_sym_allocator_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1663), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32793] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + ACTIONS(1843), 1, + aux_sym_allocator_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1491), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32856] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(901), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 16, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [32897] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + ACTIONS(1845), 1, + aux_sym_allocator_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1809), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [32960] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + ACTIONS(1847), 1, + aux_sym_allocator_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1710), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33023] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1471), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33083] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1851), 1, + aux_sym_range_attribute_designator_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(567), 1, + sym_tick, + STATE(613), 1, + sym_constraint, + ACTIONS(901), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1849), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(903), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [33137] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(567), 1, + sym_tick, + STATE(613), 1, + sym_constraint, + ACTIONS(901), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1849), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(903), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [33191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + anon_sym_LPAREN, + ACTIONS(1853), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [33223] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1715), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33283] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1774), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(1857), 1, + anon_sym_COLON, + ACTIONS(773), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(775), 17, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym_chunk_specification_token1, + anon_sym_SEMI, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_token1, + anon_sym_STAR_STAR, + [33379] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1601), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33439] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_package_specification_token3, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(1602), 1, + sym_protected_definition, + STATE(542), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33499] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1859), 1, + aux_sym_package_specification_token3, + ACTIONS(1861), 1, + aux_sym_subunit_token1, + ACTIONS(1863), 1, + aux_sym_entry_declaration_token1, + STATE(968), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1098), 1, + sym_subprogram_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(543), 2, + sym_protected_operation_item, + aux_sym_protected_body_repeat1, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(886), 6, + sym_subprogram_body, + sym_aspect_clause, + sym_entry_body, + sym_null_procedure_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + [33557] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1863), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1865), 1, + aux_sym_package_specification_token3, + STATE(968), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1098), 1, + sym_subprogram_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(539), 2, + sym_protected_operation_item, + aux_sym_protected_body_repeat1, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(886), 6, + sym_subprogram_body, + sym_aspect_clause, + sym_entry_body, + sym_null_procedure_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + [33612] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1859), 1, + aux_sym_package_specification_token3, + ACTIONS(1863), 1, + aux_sym_entry_declaration_token1, + STATE(968), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1098), 1, + sym_subprogram_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(543), 2, + sym_protected_operation_item, + aux_sym_protected_body_repeat1, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(886), 6, + sym_subprogram_body, + sym_aspect_clause, + sym_entry_body, + sym_null_procedure_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + [33667] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1863), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1867), 1, + aux_sym_package_specification_token3, + STATE(968), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1098), 1, + sym_subprogram_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(547), 2, + sym_protected_operation_item, + aux_sym_protected_body_repeat1, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(886), 6, + sym_subprogram_body, + sym_aspect_clause, + sym_entry_body, + sym_null_procedure_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + [33722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [33751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [33780] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1833), 1, + aux_sym_package_specification_token3, + ACTIONS(1873), 1, + aux_sym_compilation_unit_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + STATE(546), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [33837] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1863), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1865), 1, + aux_sym_package_specification_token3, + STATE(968), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1098), 1, + sym_subprogram_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(547), 2, + sym_protected_operation_item, + aux_sym_protected_body_repeat1, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(886), 6, + sym_subprogram_body, + sym_aspect_clause, + sym_entry_body, + sym_null_procedure_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + [33892] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1877), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(1879), 1, + aux_sym_component_definition_token1, + ACTIONS(1881), 1, + aux_sym_exception_declaration_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(950), 3, + sym_subtype_indication, + sym_access_definition, + sym_array_type_definition, + [33951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [33980] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1885), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1890), 1, + aux_sym_relation_token1, + ACTIONS(1893), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1896), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1899), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1902), 1, + aux_sym_global_mode_token1, + ACTIONS(1905), 1, + aux_sym_pragma_g_token1, + STATE(935), 1, + sym_overriding_indicator, + STATE(1085), 1, + sym_subprogram_specification, + ACTIONS(1888), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(546), 2, + sym_protected_operation_declaration, + aux_sym_protected_definition_repeat1, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(813), 4, + sym_aspect_clause, + sym_entry_declaration, + sym_pragma_g, + sym_subprogram_declaration, + [34035] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1908), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1911), 1, + aux_sym_package_specification_token3, + ACTIONS(1913), 1, + aux_sym_relation_token1, + ACTIONS(1916), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1919), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1922), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1925), 1, + aux_sym_global_mode_token1, + STATE(968), 1, + sym_overriding_indicator, + STATE(1056), 1, + sym_function_specification, + STATE(1098), 1, + sym_subprogram_specification, + STATE(1112), 1, + sym_procedure_specification, + STATE(547), 2, + sym_protected_operation_item, + aux_sym_protected_body_repeat1, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + STATE(886), 6, + sym_subprogram_body, + sym_aspect_clause, + sym_entry_body, + sym_null_procedure_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + [34090] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1877), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(1879), 1, + aux_sym_component_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(950), 3, + sym_subtype_indication, + sym_access_definition, + sym_array_type_definition, + [34146] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(1930), 1, + aux_sym_with_clause_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(1928), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34184] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1625), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(613), 1, + sym_constraint, + STATE(612), 2, + sym_scalar_constraint, + sym_index_constraint, + STATE(626), 3, + sym_range_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1849), 8, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + [34231] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1935), 1, + aux_sym_with_clause_token2, + ACTIONS(1937), 1, + aux_sym_use_clause_token2, + STATE(1780), 1, + sym_defining_identifier_list, + STATE(555), 2, + sym_generic_formal_parameter_declaration, + aux_sym_generic_formal_part_repeat1, + STATE(846), 2, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + STATE(850), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(1932), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + STATE(845), 6, + sym_use_clause, + sym_formal_object_declaration, + sym_formal_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + [34278] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + sym_identifier, + ACTIONS(1942), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(1947), 1, + aux_sym_with_clause_token2, + ACTIONS(1950), 1, + aux_sym_use_clause_token2, + ACTIONS(1953), 1, + aux_sym_pragma_g_token1, + STATE(1780), 1, + sym_defining_identifier_list, + STATE(552), 2, + sym_generic_formal_parameter_declaration, + aux_sym_generic_formal_part_repeat1, + STATE(846), 2, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + STATE(850), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(1945), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + STATE(845), 6, + sym_use_clause, + sym_formal_object_declaration, + sym_formal_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + [34325] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1958), 1, + aux_sym_exception_declaration_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(691), 1, + sym_null_exclusion, + STATE(960), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1689), 1, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + ACTIONS(1956), 5, + aux_sym_iterated_element_association_token1, + aux_sym_subprogram_body_token1, + aux_sym_declare_expression_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [34376] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1962), 1, + aux_sym_expression_token1, + ACTIONS(1964), 1, + aux_sym_expression_token3, + ACTIONS(1966), 1, + aux_sym_expression_token5, + STATE(588), 1, + aux_sym_expression_repeat2, + STATE(592), 1, + aux_sym_expression_repeat3, + STATE(597), 1, + aux_sym_expression_repeat1, + ACTIONS(1960), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34415] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1935), 1, + aux_sym_with_clause_token2, + ACTIONS(1937), 1, + aux_sym_use_clause_token2, + STATE(1780), 1, + sym_defining_identifier_list, + STATE(552), 2, + sym_generic_formal_parameter_declaration, + aux_sym_generic_formal_part_repeat1, + STATE(846), 2, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + STATE(850), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(1968), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + STATE(845), 6, + sym_use_clause, + sym_formal_object_declaration, + sym_formal_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + [34462] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1972), 1, + aux_sym_access_type_definition_token1, + ACTIONS(1974), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1976), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(634), 1, + sym_general_access_modifier, + STATE(769), 1, + sym_null_exclusion, + STATE(1126), 1, + sym_access_to_subprogram_definition, + STATE(1255), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(1970), 2, + aux_sym_use_clause_token1, + aux_sym_general_access_modifier_token1, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34519] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1974), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1976), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1978), 1, + aux_sym_access_type_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(634), 1, + sym_general_access_modifier, + STATE(769), 1, + sym_null_exclusion, + STATE(1255), 1, + sym_subtype_indication, + STATE(1259), 1, + sym_access_to_subprogram_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(1970), 2, + aux_sym_use_clause_token1, + aux_sym_general_access_modifier_token1, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34576] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1980), 1, + aux_sym_iterator_filter_token1, + STATE(29), 1, + sym_procedure_call_statement, + STATE(55), 1, + sym_delay_statement, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1016), 1, + sym_name, + STATE(1055), 1, + sym_guard_select, + STATE(1191), 1, + sym_guard, + STATE(1415), 1, + sym_value_sequence, + STATE(1436), 1, + sym_entry_call_alternative, + STATE(1639), 1, + sym_triggering_alternative, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34633] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1982), 1, + aux_sym_general_access_modifier_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(967), 3, + sym_subtype_indication, + sym_access_definition, + sym_array_type_definition, + [34686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(901), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(903), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + ACTIONS(775), 11, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_range_attribute_designator_token1, + aux_sym_loop_statement_token1, + [34742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1984), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34768] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(949), 3, + sym_subtype_indication, + sym_access_definition, + sym_array_type_definition, + [34818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1986), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1988), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1990), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [34896] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + sym_identifier, + ACTIONS(1994), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_LBRACK, + ACTIONS(2000), 1, + aux_sym_range_attribute_designator_token1, + STATE(188), 1, + sym_attribute_designator, + STATE(189), 1, + sym_aggregate, + STATE(541), 1, + sym_range_attribute_designator, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + ACTIONS(1998), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [34942] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1603), 1, + aux_sym_unconstrained_array_definition_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1086), 2, + sym_unconstrained_array_definition, + sym_constrained_array_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(967), 3, + sym_subtype_indication, + sym_access_definition, + sym_array_type_definition, + [34992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2002), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35018] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1777), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1779), 1, + aux_sym_relation_token1, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + STATE(470), 1, + sym_relational_operator, + ACTIONS(1771), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1773), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1775), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + anon_sym_PIPE, + [35055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2006), 1, + anon_sym_PIPE, + STATE(571), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(1986), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + ACTIONS(1990), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2011), 1, + anon_sym_PIPE, + STATE(575), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2009), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35140] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2013), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2015), 1, + aux_sym_component_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1047), 1, + sym_return_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + STATE(1196), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2011), 1, + anon_sym_PIPE, + STATE(571), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2017), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35220] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2019), 1, + aux_sym_component_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1028), 1, + sym_component_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1040), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2023), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35316] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(303), 1, + aux_sym_chunk_specification_token1, + ACTIONS(329), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(627), 1, + sym_non_empty_mode, + STATE(695), 1, + sym_null_exclusion, + STATE(828), 1, + sym_name, + STATE(1026), 1, + sym_access_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35390] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2027), 1, + aux_sym_general_access_modifier_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1067), 1, + sym_return_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + STATE(1196), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35438] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + sym_identifier, + ACTIONS(1994), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_LBRACK, + STATE(189), 1, + sym_aggregate, + STATE(1164), 1, + sym_attribute_designator, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + ACTIONS(1998), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [35478] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2019), 1, + aux_sym_component_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1075), 1, + sym_component_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1040), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35526] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2019), 1, + aux_sym_component_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1073), 1, + sym_component_definition, + STATE(1415), 1, + sym_value_sequence, + STATE(1040), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35574] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + sym_identifier, + ACTIONS(1994), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_LBRACK, + STATE(188), 1, + sym_attribute_designator, + STATE(189), 1, + sym_aggregate, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + ACTIONS(1998), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [35614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_expression_token3, + STATE(596), 1, + aux_sym_expression_repeat2, + ACTIONS(2033), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + STATE(611), 1, + sym_range_constraint, + ACTIONS(2035), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [35716] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1414), 1, + sym_loop_parameter_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + STATE(1413), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35761] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1067), 1, + sym_return_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + STATE(1196), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + aux_sym_expression_token5, + STATE(595), 1, + aux_sym_expression_repeat3, + ACTIONS(2033), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35833] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(303), 1, + aux_sym_chunk_specification_token1, + ACTIONS(329), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(2037), 1, + aux_sym_component_definition_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(663), 1, + sym_non_empty_mode, + STATE(780), 1, + sym_null_exclusion, + STATE(849), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + aux_sym_range_attribute_designator_token1, + STATE(614), 1, + sym_range_constraint, + ACTIONS(2039), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [35907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2041), 1, + aux_sym_expression_token5, + STATE(595), 1, + aux_sym_expression_repeat3, + ACTIONS(2025), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + aux_sym_expression_token3, + STATE(596), 1, + aux_sym_expression_repeat2, + ACTIONS(2021), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1962), 1, + aux_sym_expression_token1, + STATE(598), 1, + aux_sym_expression_repeat1, + ACTIONS(2033), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [35988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + aux_sym_expression_token1, + STATE(598), 1, + aux_sym_expression_repeat1, + ACTIONS(2023), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_loop_statement_token1, + [36015] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1079), 1, + sym_return_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + STATE(1196), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36060] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2050), 1, + anon_sym_SEMI, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(936), 1, + sym_name, + STATE(1258), 1, + sym_subprogram_default, + STATE(1415), 1, + sym_value_sequence, + STATE(1584), 1, + sym_aspect_specification, + ACTIONS(2054), 2, + aux_sym_primary_token1, + anon_sym_LT_GT, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36105] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1958), 1, + aux_sym_exception_declaration_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(691), 1, + sym_null_exclusion, + STATE(960), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1689), 1, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36149] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(723), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1057), 2, + sym_subtype_indication, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36191] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2056), 1, + aux_sym_package_specification_token1, + ACTIONS(2058), 1, + aux_sym_access_type_definition_token1, + ACTIONS(2060), 1, + aux_sym_interface_type_definition_token1, + STATE(368), 1, + sym_proper_body, + STATE(957), 1, + sym_overriding_indicator, + STATE(1213), 1, + sym_subprogram_specification, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + STATE(241), 4, + sym_subprogram_body, + sym_package_body, + sym_task_body, + sym_protected_body, + [36235] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2062), 1, + aux_sym_package_specification_token3, + ACTIONS(2064), 1, + aux_sym_at_clause_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(646), 1, + sym_mod_clause, + STATE(1006), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(647), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36277] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(2066), 1, + anon_sym_LPAREN, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(197), 1, + sym_name, + STATE(443), 1, + sym_subtype_indication_paren_constraint, + STATE(644), 1, + sym_subpool_specification, + STATE(756), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2070), 15, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_token1, + aux_sym_access_type_definition_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_subtype_declaration_token1, + [36345] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2074), 1, + aux_sym_relation_token1, + STATE(469), 1, + sym_relational_operator, + ACTIONS(1771), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1773), 4, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1775), 7, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + [36377] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(303), 1, + aux_sym_chunk_specification_token1, + ACTIONS(329), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(676), 1, + sym_non_empty_mode, + STATE(787), 1, + sym_null_exclusion, + STATE(863), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [36442] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(662), 1, + sym_name, + STATE(703), 1, + sym_null_exclusion, + STATE(806), 1, + sym_access_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [36504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2080), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [36525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [36546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [36567] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2086), 1, + aux_sym_private_type_declaration_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(936), 1, + sym_name, + STATE(1256), 1, + sym_subprogram_default, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(2054), 2, + aux_sym_primary_token1, + anon_sym_LT_GT, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36606] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2088), 1, + sym_identifier, + ACTIONS(2090), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(926), 1, + sym_name, + STATE(1173), 1, + sym_exception_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1862), 1, + sym_choice_parameter_specification, + STATE(1863), 1, + sym_exception_choice_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36647] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2092), 1, + aux_sym_allocator_token1, + STATE(1476), 1, + sym_task_definition, + STATE(1625), 1, + sym_overriding_indicator, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [36686] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2094), 1, + aux_sym_access_type_definition_token1, + ACTIONS(2096), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2098), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2100), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(659), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36727] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2102), 1, + aux_sym_allocator_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(1851), 1, + sym_task_definition, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [36766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [36787] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2106), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2108), 1, + aux_sym_package_specification_token3, + STATE(1625), 1, + sym_overriding_indicator, + STATE(625), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [36826] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2110), 1, + aux_sym_allocator_token1, + STATE(1623), 1, + sym_task_definition, + STATE(1625), 1, + sym_overriding_indicator, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [36865] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(717), 1, + sym_null_exclusion, + STATE(853), 1, + sym_name, + STATE(1116), 1, + sym_access_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36906] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(691), 1, + sym_null_exclusion, + STATE(960), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1689), 1, + sym_access_definition, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36947] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2117), 1, + aux_sym_relation_token1, + ACTIONS(2120), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2123), 1, + aux_sym_global_mode_token1, + STATE(1625), 1, + sym_overriding_indicator, + ACTIONS(2115), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(625), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [36984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2126), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_loop_statement_token1, + [37005] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(710), 1, + sym_null_exclusion, + STATE(826), 1, + sym_name, + STATE(993), 1, + sym_access_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37046] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2128), 1, + aux_sym_allocator_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(1852), 1, + sym_task_definition, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37085] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(2130), 1, + aux_sym_primary_token1, + ACTIONS(2132), 1, + aux_sym_case_expression_token1, + STATE(668), 1, + aux_sym_component_list_repeat1, + STATE(923), 1, + sym_component_item, + STATE(1347), 1, + sym_variant_part, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(1831), 1, + sym_component_list, + STATE(980), 2, + sym_component_declaration, + sym_aspect_clause, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37126] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(2130), 1, + aux_sym_primary_token1, + ACTIONS(2132), 1, + aux_sym_case_expression_token1, + STATE(668), 1, + aux_sym_component_list_repeat1, + STATE(923), 1, + sym_component_item, + STATE(1337), 1, + sym_component_list, + STATE(1347), 1, + sym_variant_part, + STATE(1828), 1, + sym_defining_identifier_list, + STATE(980), 2, + sym_component_declaration, + sym_aspect_clause, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37167] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2134), 1, + aux_sym_allocator_token1, + STATE(1611), 1, + sym_task_definition, + STATE(1625), 1, + sym_overriding_indicator, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37206] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2136), 1, + aux_sym_access_type_definition_token1, + ACTIONS(2138), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2140), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2142), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(633), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2144), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [37275] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1128), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37313] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2146), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [37341] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1469), 1, + sym_task_definition, + STATE(1625), 1, + sym_overriding_indicator, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37377] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2148), 1, + aux_sym_package_specification_token3, + STATE(1625), 1, + sym_overriding_indicator, + STATE(625), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37413] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2150), 1, + aux_sym_package_specification_token3, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1006), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(639), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37449] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2152), 1, + sym_identifier, + ACTIONS(2158), 1, + anon_sym_LBRACK, + ACTIONS(2161), 1, + aux_sym_package_specification_token3, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1006), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(639), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2155), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37485] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2163), 1, + aux_sym_use_clause_token1, + ACTIONS(2165), 1, + aux_sym_use_clause_token2, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1844), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37523] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2167), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [37551] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1117), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37589] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(1732), 1, + sym_task_definition, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37625] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(197), 1, + sym_name, + STATE(428), 1, + sym_subtype_indication_paren_constraint, + STATE(756), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37663] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(815), 1, + sym_name, + STATE(977), 1, + sym_formal_group_designator, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(2169), 2, + anon_sym_null, + anon_sym_all, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37699] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2171), 1, + aux_sym_package_specification_token3, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1006), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(638), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37735] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2171), 1, + aux_sym_package_specification_token3, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1006), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(639), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37771] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(1631), 1, + sym_task_definition, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37807] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(1630), 1, + sym_task_definition, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [37843] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1036), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37881] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1399), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37919] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1038), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37957] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1095), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37995] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1045), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38033] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2090), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(926), 1, + sym_name, + STATE(1173), 1, + sym_exception_choice, + STATE(1415), 1, + sym_value_sequence, + STATE(1493), 1, + sym_exception_choice_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38071] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(1784), 1, + sym_task_definition, + STATE(621), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [38107] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1068), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38145] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1082), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38183] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2173), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [38211] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1353), 1, + sym_subtype_indication, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38249] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(550), 1, + sym_name, + STATE(769), 1, + sym_null_exclusion, + STATE(1415), 1, + sym_value_sequence, + STATE(1424), 1, + sym_subtype_indication, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38287] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2175), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [38315] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(787), 1, + sym_null_exclusion, + STATE(863), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2177), 1, + aux_sym_chunk_specification_token1, + ACTIONS(773), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(775), 9, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + [38375] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(805), 1, + sym_non_empty_parameter_profile, + STATE(809), 1, + sym_formal_part, + ACTIONS(2173), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [38400] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(969), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1847), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38433] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(809), 1, + sym_formal_part, + STATE(811), 1, + sym_non_empty_parameter_profile, + ACTIONS(2146), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [38458] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1795), 1, + sym_identifier, + STATE(1828), 1, + sym_defining_identifier_list, + ACTIONS(2183), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(673), 2, + sym_component_item, + aux_sym_component_list_repeat1, + STATE(980), 2, + sym_component_declaration, + sym_aspect_clause, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [38489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2187), 11, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_token1, + aux_sym_factor_token1, + aux_sym_primary_token1, + aux_sym_allocator_token1, + [38510] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_LBRACK, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1184), 2, + sym__parenthesized_expression, + sym_aggregate, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [38539] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2189), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2191), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(944), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38574] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(808), 1, + sym_non_empty_parameter_profile, + STATE(809), 1, + sym_formal_part, + ACTIONS(2144), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [38599] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 1, + sym_identifier, + ACTIONS(2196), 1, + aux_sym_iterated_element_association_token1, + STATE(1828), 1, + sym_defining_identifier_list, + ACTIONS(2199), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(673), 2, + sym_component_item, + aux_sym_component_list_repeat1, + STATE(980), 2, + sym_component_declaration, + sym_aspect_clause, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [38630] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_LBRACK, + STATE(185), 2, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + STATE(1123), 2, + sym__parenthesized_expression, + sym_aggregate, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + STATE(186), 4, + sym_delta_aggregate, + sym_extension_aggregate, + sym_record_aggregate, + sym_array_aggregate, + [38659] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2090), 1, + aux_sym_positional_array_aggregate_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(926), 1, + sym_name, + STATE(1409), 1, + sym_exception_choice, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38694] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(1587), 1, + aux_sym_relation_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(774), 1, + sym_null_exclusion, + STATE(848), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38729] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1625), 1, + sym_overriding_indicator, + STATE(637), 2, + sym_task_item, + aux_sym_task_definition_repeat1, + STATE(912), 2, + sym_aspect_clause, + sym_entry_declaration, + STATE(211), 4, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [38762] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2203), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1013), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38794] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1672), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38826] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2205), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1001), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2207), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1002), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38890] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2209), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1003), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38922] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1333), 1, + sym_interface_list, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38954] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1307), 1, + sym_interface_list, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38986] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1770), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39018] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1614), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39050] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2211), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1015), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39082] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1590), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39114] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1355), 1, + sym_interface_list, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39146] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2213), 1, + sym_string_literal, + ACTIONS(2215), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(989), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2217), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(992), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39212] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2219), 1, + sym_string_literal, + ACTIONS(2221), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1012), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39246] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2223), 1, + aux_sym_loop_parameter_specification_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(821), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39278] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1455), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39310] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2217), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(826), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39342] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1604), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39374] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1499), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39406] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1739), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39438] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2225), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(959), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39470] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2227), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(966), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39502] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1656), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39534] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1666), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39566] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2217), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(641), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39598] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(897), 1, + sym_name, + STATE(1309), 1, + sym_global_set, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39630] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1027), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1781), 1, + sym_reduction_specification, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39662] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2229), 1, + sym_string_literal, + ACTIONS(2231), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(981), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39696] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1390), 1, + sym_interface_list, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + ACTIONS(2237), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2235), 10, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_token1, + [39750] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1485), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39782] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2217), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(829), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39814] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(985), 1, + sym_name, + STATE(1319), 1, + sym_index_subtype_definition, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39846] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1193), 1, + sym_interface_list, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39878] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1633), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39910] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1670), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39942] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1449), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39974] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1706), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40006] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2217), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(873), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40038] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2239), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(917), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40070] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(971), 1, + sym_dispatching_operation_specifier, + STATE(1096), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40102] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2241), 1, + aux_sym_loop_parameter_specification_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(833), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40134] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1441), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40166] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2243), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(964), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40198] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2217), 1, + aux_sym_attribute_designator_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(506), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40230] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1647), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40262] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1667), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40294] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(954), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40326] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(955), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40358] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1869), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40390] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1789), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40422] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2249), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(961), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40454] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(908), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1834), 1, + sym_name_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40486] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1853), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40518] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(497), 1, + sym_identifier, + ACTIONS(2251), 1, + aux_sym_package_body_token1, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(847), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 12, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + [40568] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1149), 1, + sym_interface_list, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40600] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2255), 1, + sym_string_literal, + ACTIONS(2257), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(986), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 2, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1473), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40666] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2259), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(963), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40698] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(818), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + STATE(1612), 1, + sym_interface_list, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40730] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2261), 1, + anon_sym_SEMI, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(962), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40762] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1025), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40791] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(812), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40820] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(856), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40849] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1020), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40878] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(760), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40907] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(881), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40936] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(905), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + sym_identifier, + ACTIONS(2266), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2268), 1, + aux_sym_access_type_definition_token1, + ACTIONS(2271), 1, + aux_sym_interface_type_definition_token1, + STATE(1591), 1, + sym_defining_identifier_list, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(748), 2, + sym_declare_item, + aux_sym_declare_expression_repeat1, + STATE(1048), 2, + sym_object_declaration, + sym_object_renaming_declaration, + [40996] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(843), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41025] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(804), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41054] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(831), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41083] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(635), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41112] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(892), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2274), 1, + sym_identifier, + ACTIONS(2276), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_token1, + aux_sym_factor_token1, + aux_sym_primary_token1, + aux_sym_allocator_token1, + [41160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_identifier, + ACTIONS(2280), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_token1, + aux_sym_factor_token1, + aux_sym_primary_token1, + aux_sym_allocator_token1, + [41179] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(195), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + sym_identifier, + ACTIONS(2284), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [41227] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + sym_identifier, + ACTIONS(2288), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2290), 1, + aux_sym_access_type_definition_token1, + ACTIONS(2292), 1, + aux_sym_interface_type_definition_token1, + STATE(1591), 1, + sym_defining_identifier_list, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(748), 2, + sym_declare_item, + aux_sym_declare_expression_repeat1, + STATE(1048), 2, + sym_object_declaration, + sym_object_renaming_declaration, + [41258] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(832), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41287] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2294), 1, + aux_sym_with_clause_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(1928), 6, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + [41314] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(898), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41343] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(942), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41372] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(990), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41401] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(163), 1, + sym_name, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41430] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(885), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + ACTIONS(2235), 10, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_token1, + [41478] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2296), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(969), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41507] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(900), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41536] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(506), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41565] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(956), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + sym_identifier, + ACTIONS(2290), 1, + aux_sym_access_type_definition_token1, + ACTIONS(2292), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2300), 1, + aux_sym_subprogram_body_token1, + STATE(1591), 1, + sym_defining_identifier_list, + STATE(249), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(758), 2, + sym_declare_item, + aux_sym_declare_expression_repeat1, + STATE(1048), 2, + sym_object_declaration, + sym_object_renaming_declaration, + [41625] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(883), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41654] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(659), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41683] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(876), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41712] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1021), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 1, + sym_identifier, + ACTIONS(2304), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_token1, + aux_sym_factor_token1, + aux_sym_primary_token1, + aux_sym_allocator_token1, + [41760] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(888), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41789] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(549), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41818] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(948), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41847] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(863), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41876] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(889), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + sym_identifier, + ACTIONS(2308), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [41924] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(984), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41953] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(891), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [41982] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(904), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42011] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(868), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42040] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(848), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42069] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(1009), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42098] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(887), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42127] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(906), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42156] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(879), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 1, + sym_identifier, + ACTIONS(2312), 10, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_token1, + [42204] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(882), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42233] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(816), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42262] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(852), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42291] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(900), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42320] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(819), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 1, + sym_identifier, + ACTIONS(2316), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [42368] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(890), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42397] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(847), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42426] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(901), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42455] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(842), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42484] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_identifier, + STATE(170), 1, + sym_reduction_attribute_reference, + STATE(827), 1, + sym_name, + STATE(1415), 1, + sym_value_sequence, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + STATE(181), 3, + sym_attribute_reference, + sym_function_call, + sym_qualified_expression, + [42513] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + aux_sym_package_specification_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(809), 1, + sym_formal_part, + STATE(1035), 1, + sym_non_empty_parameter_profile, + ACTIONS(2320), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [42543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2175), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2325), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2331), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + aux_sym_object_renaming_declaration_token1, + [42655] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2333), 1, + aux_sym_package_specification_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(809), 1, + sym_formal_part, + STATE(1035), 1, + sym_non_empty_parameter_profile, + ACTIONS(2320), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [42685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 1, + sym_identifier, + ACTIONS(2338), 9, + aux_sym_iterated_element_association_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [42703] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2340), 1, + aux_sym_expression_token1, + ACTIONS(2342), 1, + aux_sym_expression_token3, + ACTIONS(2344), 1, + aux_sym_expression_token5, + STATE(937), 1, + aux_sym_expression_repeat3, + STATE(940), 1, + aux_sym_expression_repeat2, + STATE(946), 1, + aux_sym_expression_repeat1, + ACTIONS(1960), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [42731] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2346), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42754] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + aux_sym_iterator_filter_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1177), 1, + sym_iterator_filter, + ACTIONS(2348), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + sym_identifier, + ACTIONS(2354), 8, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42798] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2358), 1, + aux_sym_expression_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(987), 1, + aux_sym_interface_list_repeat1, + ACTIONS(2356), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42825] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(809), 1, + sym_formal_part, + STATE(1035), 1, + sym_non_empty_parameter_profile, + ACTIONS(2320), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [42852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 1, + sym_identifier, + ACTIONS(2362), 8, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [42869] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + aux_sym_iterator_filter_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1179), 1, + sym_iterator_filter, + ACTIONS(2364), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 1, + anon_sym_PIPE, + STATE(822), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(1986), 7, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + [42915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 1, + anon_sym_PIPE, + STATE(824), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2009), 7, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + [42934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 1, + anon_sym_PIPE, + STATE(822), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2017), 7, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + [42953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_DOT_DOT, + ACTIONS(1990), 8, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + anon_sym_PIPE, + [42970] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2373), 1, + anon_sym_SEMI, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1283), 1, + sym_assign_value, + STATE(1567), 1, + sym_aspect_specification, + [43001] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + aux_sym_package_specification_token2, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(810), 1, + sym_result_profile, + STATE(1031), 1, + sym_parameter_and_result_profile, + STATE(1368), 1, + sym_formal_part, + [43032] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1305), 1, + sym_assign_value, + STATE(1822), 1, + sym_aspect_specification, + [43063] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2383), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1216), 1, + sym_assign_value, + STATE(1506), 1, + sym_aspect_specification, + [43094] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2385), 1, + anon_sym_COLON, + ACTIONS(2388), 1, + anon_sym_SEMI, + ACTIONS(2391), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1108), 1, + aux_sym_defining_identifier_list_repeat1, + ACTIONS(775), 3, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [43121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + aux_sym_iterator_filter_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1298), 1, + sym_iterator_filter, + ACTIONS(2393), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [43148] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + ACTIONS(2395), 1, + aux_sym_package_specification_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(810), 1, + sym_result_profile, + STATE(1031), 1, + sym_parameter_and_result_profile, + STATE(1368), 1, + sym_formal_part, + [43179] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + aux_sym_iterator_filter_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1244), 1, + sym_iterator_filter, + ACTIONS(2397), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [43206] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + aux_sym_chunk_specification_token1, + ACTIONS(307), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(325), 1, + aux_sym_extended_global_aspect_definition_token1, + ACTIONS(327), 1, + aux_sym_global_mode_token1, + ACTIONS(329), 1, + aux_sym_non_empty_mode_token1, + STATE(704), 1, + sym_global_mode, + STATE(817), 1, + sym_non_empty_mode, + STATE(1342), 1, + sym_extended_global_aspect_definition, + STATE(1403), 1, + sym_global_aspect_element, + [43237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2399), 1, + sym_identifier, + ACTIONS(2401), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2403), 1, + sym_identifier, + ACTIONS(2405), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + sym_identifier, + ACTIONS(2409), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2411), 1, + sym_identifier, + ACTIONS(2413), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2415), 1, + sym_identifier, + ACTIONS(2417), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2419), 1, + sym_identifier, + ACTIONS(2421), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2423), 1, + sym_identifier, + ACTIONS(2425), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2427), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + [43371] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + aux_sym_with_clause_token2, + ACTIONS(2434), 1, + aux_sym_expression_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2429), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + sym_identifier, + ACTIONS(2438), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + sym_identifier, + ACTIONS(2442), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2444), 1, + sym_identifier, + ACTIONS(2446), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43445] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2448), 1, + aux_sym_package_specification_token2, + ACTIONS(2450), 1, + aux_sym_object_renaming_declaration_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1660), 1, + sym_aspect_specification, + [43473] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1416), 1, + sym_assign_value, + ACTIONS(2452), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43499] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1423), 1, + sym_assign_value, + ACTIONS(2454), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 1, + sym_identifier, + ACTIONS(2458), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + sym_identifier, + ACTIONS(2462), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43557] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(810), 1, + sym_result_profile, + STATE(1031), 1, + sym_parameter_and_result_profile, + STATE(1368), 1, + sym_formal_part, + [43585] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1376), 1, + sym_assign_value, + ACTIONS(2464), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2466), 1, + sym_identifier, + ACTIONS(2468), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2470), 1, + sym_identifier, + ACTIONS(2472), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43643] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2476), 1, + aux_sym_with_clause_token2, + ACTIONS(2479), 1, + aux_sym_expression_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2474), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43669] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2481), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2485), 1, + aux_sym_record_component_association_list_token1, + STATE(1462), 1, + sym_enumeration_aggregate, + STATE(1474), 1, + sym_array_aggregate, + STATE(183), 3, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [43693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 1, + sym_identifier, + ACTIONS(2489), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2491), 1, + sym_identifier, + ACTIONS(2493), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2495), 1, + sym_identifier, + ACTIONS(2497), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2499), 1, + sym_identifier, + ACTIONS(2501), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + sym_identifier, + ACTIONS(2505), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43773] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1363), 1, + sym_assign_value, + ACTIONS(2507), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + sym_identifier, + ACTIONS(2511), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 1, + sym_identifier, + ACTIONS(2515), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 1, + sym_identifier, + ACTIONS(2519), 7, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + aux_sym_range_attribute_designator_token1, + [43847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2523), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43863] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2527), 1, + aux_sym_with_clause_token2, + ACTIONS(2530), 1, + aux_sym_expression_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2525), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2534), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 1, + sym_identifier, + ACTIONS(2538), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + sym_identifier, + ACTIONS(2542), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43953] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1324), 1, + sym_assign_value, + ACTIONS(2548), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + sym_identifier, + ACTIONS(2552), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [43995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2554), 1, + sym_identifier, + ACTIONS(2556), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [44011] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1367), 1, + sym_assign_value, + ACTIONS(2558), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + sym_identifier, + ACTIONS(2562), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [44053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + sym_identifier, + ACTIONS(2566), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_pragma_g_token1, + [44069] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2568), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [44090] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2570), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2572), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2575), 1, + anon_sym_COLON, + ACTIONS(2577), 1, + aux_sym_iterator_specification_token1, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [44113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2579), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1641), 1, + sym_aspect_specification, + [44138] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2581), 1, + aux_sym_package_specification_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1660), 1, + sym_aspect_specification, + [44163] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2583), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1757), 1, + sym_aspect_specification, + [44188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(1730), 1, + sym_tick, + ACTIONS(1793), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44205] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2585), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1470), 1, + sym_aspect_specification, + [44230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44243] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2589), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1768), 1, + sym_aspect_specification, + [44268] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2591), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1752), 1, + sym_aspect_specification, + [44293] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2593), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1751), 1, + sym_aspect_specification, + [44318] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2595), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1738), 1, + sym_aspect_specification, + [44343] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2597), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1792), 1, + sym_aspect_specification, + [44368] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2599), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1528), 1, + sym_aspect_specification, + [44393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44419] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2605), 1, + anon_sym_SEMI, + STATE(585), 1, + sym_tick, + STATE(1097), 1, + sym_actual_parameter_part, + STATE(1733), 1, + sym_assign_value, + [44444] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2607), 1, + anon_sym_LPAREN, + ACTIONS(2609), 1, + anon_sym_SEMI, + ACTIONS(2611), 1, + aux_sym_package_specification_token2, + ACTIONS(2613), 1, + aux_sym_expression_token3, + STATE(1210), 1, + sym_discriminant_part, + STATE(1189), 2, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [44467] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1161), 1, + aux_sym_name_list_repeat1, + ACTIONS(2615), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44490] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2617), 1, + anon_sym_COMMA, + ACTIONS(2619), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1246), 1, + aux_sym_name_list_repeat1, + [44515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2621), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44528] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2623), 1, + aux_sym_package_specification_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1484), 1, + sym_aspect_specification, + [44553] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2625), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1718), 1, + sym_aspect_specification, + [44578] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2627), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + aux_sym_iterator_filter_token1, + STATE(1076), 1, + sym_non_empty_entry_body_formal_part, + STATE(1418), 1, + sym_aspect_specification, + STATE(1419), 1, + sym_formal_part, + STATE(1460), 1, + sym_entry_barrier, + [44603] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2631), 1, + aux_sym_package_specification_token1, + STATE(1152), 1, + sym_subprogram_specification, + STATE(1729), 1, + sym_package_specification, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + [44626] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2633), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1744), 1, + sym_aspect_specification, + [44651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2635), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1589), 1, + sym_aspect_specification, + [44676] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2637), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1541), 1, + sym_aspect_specification, + [44701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44714] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2617), 1, + anon_sym_COMMA, + ACTIONS(2641), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + STATE(1175), 1, + aux_sym_name_list_repeat1, + [44739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + sym_identifier, + ACTIONS(2647), 5, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_relation_token1, + [44766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2649), 1, + aux_sym_package_specification_token1, + STATE(1080), 1, + sym_subprogram_specification, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + [44786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 6, + aux_sym_iterated_element_association_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + aux_sym_relation_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44798] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + sym_identifier, + STATE(1268), 1, + sym_quantifier, + ACTIONS(2655), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1400), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [44816] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(281), 1, + aux_sym_subprogram_body_token1, + ACTIONS(335), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2657), 1, + aux_sym_declare_expression_token1, + ACTIONS(2659), 1, + aux_sym_loop_statement_token1, + STATE(1723), 1, + sym_iteration_scheme, + [44838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2661), 1, + anon_sym_COMMA, + ACTIONS(2663), 1, + anon_sym_RPAREN, + ACTIONS(2667), 1, + aux_sym_with_clause_token2, + STATE(1357), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + anon_sym_COMMA, + ACTIONS(2671), 1, + anon_sym_RBRACK, + ACTIONS(2673), 1, + aux_sym_with_clause_token2, + STATE(1234), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44878] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_SEMI, + ACTIONS(2677), 1, + aux_sym_with_clause_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [44900] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2681), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2683), 1, + aux_sym_entry_declaration_token1, + STATE(953), 1, + sym_subprogram_specification, + STATE(1107), 1, + sym_function_specification, + STATE(1109), 1, + sym_procedure_specification, + [44922] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2685), 1, + anon_sym_LPAREN, + ACTIONS(2687), 1, + anon_sym_SEMI, + ACTIONS(2689), 1, + aux_sym_package_specification_token2, + STATE(1033), 1, + sym_known_discriminant_part, + STATE(1369), 1, + sym_aspect_specification, + [44944] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2693), 1, + aux_sym_with_clause_token1, + ACTIONS(2695), 1, + aux_sym_allocator_token1, + ACTIONS(2697), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(2699), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(2701), 1, + aux_sym_private_extension_declaration_token1, + [44966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2703), 1, + sym_identifier, + ACTIONS(2705), 5, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [44980] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2661), 1, + anon_sym_COMMA, + ACTIONS(2667), 1, + aux_sym_with_clause_token2, + ACTIONS(2707), 1, + anon_sym_RPAREN, + STATE(1357), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2132), 1, + aux_sym_case_expression_token1, + ACTIONS(2709), 1, + sym_identifier, + STATE(1438), 1, + sym_variant_part, + ACTIONS(2711), 3, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [45018] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2713), 1, + aux_sym_expression_token3, + STATE(924), 1, + aux_sym_expression_repeat2, + ACTIONS(2021), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [45034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2716), 1, + anon_sym_COLON, + ACTIONS(775), 4, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON_EQ, + [45050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2718), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45070] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2720), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2723), 1, + aux_sym_package_specification_token3, + ACTIONS(2725), 1, + aux_sym_pragma_g_token1, + STATE(927), 3, + sym_exception_handler, + sym_pragma_g, + aux_sym_exception_handler_list_repeat1, + [45088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2728), 1, + anon_sym_COLON, + ACTIONS(775), 4, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2730), 1, + aux_sym_expression_token1, + STATE(929), 1, + aux_sym_expression_repeat1, + ACTIONS(2023), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [45120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2733), 1, + sym_identifier, + ACTIONS(2735), 5, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_relation_token1, + [45134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(2737), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2739), 1, + aux_sym_package_specification_token3, + STATE(927), 3, + sym_exception_handler, + sym_pragma_g, + aux_sym_exception_handler_list_repeat1, + [45152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(2737), 1, + aux_sym_iterator_filter_token1, + STATE(1533), 1, + sym_exception_handler_list, + STATE(931), 3, + sym_exception_handler, + sym_pragma_g, + aux_sym_exception_handler_list_repeat1, + [45170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + aux_sym_expression_token5, + STATE(933), 1, + aux_sym_expression_repeat3, + ACTIONS(2025), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [45186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_loop_statement_token1, + [45198] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2683), 1, + aux_sym_entry_declaration_token1, + STATE(1060), 1, + sym_subprogram_specification, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + [45218] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + ACTIONS(2746), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [45238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + aux_sym_expression_token5, + STATE(933), 1, + aux_sym_expression_repeat3, + ACTIONS(2033), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [45254] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2691), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2748), 1, + aux_sym_allocator_token1, + ACTIONS(2750), 1, + aux_sym_interface_type_definition_token2, + STATE(1312), 1, + sym_record_definition, + [45276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, + sym_identifier, + ACTIONS(2754), 5, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [45290] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + aux_sym_expression_token3, + STATE(924), 1, + aux_sym_expression_repeat2, + ACTIONS(2033), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [45306] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(2756), 1, + aux_sym_iterated_element_association_token1, + STATE(1294), 1, + sym_parameter_specification, + STATE(1552), 1, + sym_defining_identifier_list, + STATE(1566), 1, + sym_parameter_specification_list, + STATE(1607), 1, + sym_entry_index_specification, + [45328] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_SEMI, + ACTIONS(2760), 1, + aux_sym_with_clause_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45350] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2607), 1, + anon_sym_LPAREN, + ACTIONS(2762), 1, + anon_sym_SEMI, + ACTIONS(2764), 1, + aux_sym_package_specification_token2, + STATE(1189), 1, + sym_unknown_discriminant_part, + STATE(1388), 1, + sym_known_discriminant_part, + STATE(1391), 1, + sym_discriminant_part, + [45372] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2766), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2768), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1754), 1, + sym_identifier, + ACTIONS(1756), 5, + sym_string_literal, + sym_character_literal, + anon_sym_AT, + anon_sym_LBRACK, + aux_sym_attribute_designator_token1, + [45408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2340), 1, + aux_sym_expression_token1, + STATE(929), 1, + aux_sym_expression_repeat1, + ACTIONS(2033), 4, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + [45424] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2691), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2770), 1, + anon_sym_SEMI, + ACTIONS(2772), 1, + aux_sym_with_clause_token1, + STATE(1312), 1, + sym_record_definition, + [45446] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2774), 1, + aux_sym_object_renaming_declaration_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2776), 1, + anon_sym_SEMI, + STATE(1281), 1, + sym_assign_value, + STATE(1544), 1, + sym_aspect_specification, + [45484] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2778), 1, + anon_sym_SEMI, + STATE(1143), 1, + sym_assign_value, + STATE(1692), 1, + sym_aspect_specification, + [45503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2780), 1, + anon_sym_COMMA, + STATE(970), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(2782), 3, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [45518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2784), 1, + anon_sym_SEMI, + ACTIONS(2786), 1, + aux_sym_package_specification_token2, + ACTIONS(2788), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1764), 1, + sym_aspect_specification, + [45537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(2792), 1, + aux_sym_package_specification_token2, + ACTIONS(2794), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1445), 1, + sym_aspect_specification, + [45556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2796), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2798), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45594] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2800), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(1165), 1, + sym_subprogram_specification, + STATE(1155), 2, + sym_function_specification, + sym_procedure_specification, + [45630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2784), 1, + anon_sym_SEMI, + ACTIONS(2788), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(2802), 1, + aux_sym_package_specification_token2, + STATE(1443), 1, + sym_aspect_specification, + [45649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2804), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, + aux_sym_object_renaming_declaration_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45687] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45725] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45763] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2750), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(2810), 1, + aux_sym_allocator_token1, + STATE(1312), 1, + sym_record_definition, + [45782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2249), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [45801] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2812), 1, + anon_sym_SEMI, + STATE(1231), 1, + sym_assign_value, + STATE(1790), 1, + sym_aspect_specification, + [45820] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1801), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(1050), 1, + sym_subprogram_specification, + STATE(1107), 1, + sym_function_specification, + STATE(1109), 1, + sym_procedure_specification, + [45839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2814), 1, + aux_sym_iterated_element_association_token2, + STATE(168), 1, + sym_actual_parameter_part, + STATE(582), 1, + sym_tick, + [45858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2780), 1, + anon_sym_COMMA, + STATE(1007), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(2816), 3, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [45873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2818), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [45884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(805), 1, + sym_parameter_and_result_profile, + STATE(810), 1, + sym_result_profile, + STATE(1368), 1, + sym_formal_part, + [45903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(1760), 1, + anon_sym_SEMI, + ACTIONS(2391), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(2820), 1, + anon_sym_COLON, + STATE(1108), 1, + aux_sym_defining_identifier_list_repeat1, + [45922] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2823), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2825), 1, + aux_sym_with_clause_token1, + STATE(1431), 1, + sym_record_definition, + [45941] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + anon_sym_SEMI, + STATE(1252), 1, + sym_formal_part, + STATE(1592), 1, + sym_aspect_specification, + [45960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2681), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(953), 1, + sym_subprogram_specification, + STATE(1107), 1, + sym_function_specification, + STATE(1109), 1, + sym_procedure_specification, + [45979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [45990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 1, + anon_sym_EQ_GT, + ACTIONS(2829), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [46003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [46014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 1, + sym_identifier, + ACTIONS(2837), 4, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_case_expression_token1, + [46027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2215), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46046] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2839), 1, + anon_sym_SEMI, + STATE(1293), 1, + sym_formal_part, + STATE(1542), 1, + sym_aspect_specification, + [46065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_RPAREN, + ACTIONS(2843), 1, + aux_sym_expression_token4, + ACTIONS(2845), 1, + aux_sym_elsif_expression_item_token1, + STATE(1030), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2847), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2849), 1, + aux_sym_range_attribute_designator_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46120] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + aux_sym_expression_token1, + STATE(1000), 1, + aux_sym_interface_list_repeat1, + ACTIONS(2851), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(808), 1, + sym_parameter_and_result_profile, + STATE(810), 1, + sym_result_profile, + STATE(1368), 1, + sym_formal_part, + [46173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2257), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2853), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + STATE(38), 1, + sym_delay_statement, + STATE(1655), 1, + sym_delay_alternative, + STATE(147), 2, + sym_delay_until_statement, + sym_delay_relative_statement, + [46228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2855), 1, + aux_sym_object_renaming_declaration_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2373), 1, + anon_sym_SEMI, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(1283), 1, + sym_assign_value, + STATE(1567), 1, + sym_aspect_specification, + [46266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2350), 1, + aux_sym_iterator_filter_token1, + STATE(1176), 1, + sym_iterator_filter, + ACTIONS(2857), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(810), 1, + sym_result_profile, + STATE(811), 1, + sym_parameter_and_result_profile, + STATE(1368), 1, + sym_formal_part, + [46300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + anon_sym_COMMA, + ACTIONS(2671), 1, + anon_sym_RBRACK, + STATE(1234), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2861), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(2859), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + STATE(997), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [46332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2350), 1, + aux_sym_iterator_filter_token1, + STATE(1180), 1, + sym_iterator_filter, + ACTIONS(2864), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46347] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2866), 1, + aux_sym_package_specification_token3, + ACTIONS(2868), 1, + aux_sym_expression_token4, + ACTIONS(2870), 1, + aux_sym_elsif_expression_item_token1, + STATE(997), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [46364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + aux_sym_expression_token1, + STATE(1000), 1, + aux_sym_interface_list_repeat1, + ACTIONS(2427), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46398] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2261), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46417] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2875), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46436] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2877), 1, + anon_sym_LPAREN, + ACTIONS(2879), 1, + anon_sym_SEMI, + STATE(1130), 1, + sym_formal_part, + STATE(1453), 1, + sym_aspect_specification, + [46455] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2681), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(1014), 1, + sym_subprogram_specification, + STATE(1107), 1, + sym_function_specification, + STATE(1109), 1, + sym_procedure_specification, + [46474] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2881), 1, + aux_sym_at_clause_token1, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2883), 1, + anon_sym_COMMA, + STATE(1007), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(2886), 3, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [46508] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [46519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2890), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2892), 1, + aux_sym_package_specification_token2, + ACTIONS(775), 3, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [46553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 1, + anon_sym_LT_GT, + STATE(1224), 1, + sym_discriminant_specification, + STATE(1507), 1, + sym_defining_identifier_list, + STATE(1509), 1, + sym_discriminant_specification_list, + [46572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2899), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2901), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46610] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(2794), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(2903), 1, + aux_sym_package_specification_token2, + STATE(1714), 1, + sym_aspect_specification, + [46629] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2905), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2605), 1, + anon_sym_SEMI, + STATE(585), 1, + sym_tick, + STATE(1097), 1, + sym_actual_parameter_part, + [46667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2907), 1, + anon_sym_LPAREN, + ACTIONS(2909), 1, + anon_sym_SEMI, + STATE(1290), 1, + sym_formal_part, + STATE(1562), 1, + sym_aspect_specification, + [46686] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2870), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(2911), 1, + aux_sym_package_specification_token3, + ACTIONS(2913), 1, + aux_sym_expression_token4, + STATE(999), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [46703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(810), 1, + sym_result_profile, + STATE(1127), 1, + sym_parameter_and_result_profile, + STATE(1368), 1, + sym_formal_part, + [46722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2915), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46741] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2917), 1, + anon_sym_RPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(1127), 1, + sym_formal_part, + ACTIONS(2919), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1956), 5, + aux_sym_iterated_element_association_token1, + aux_sym_subprogram_body_token1, + aux_sym_declare_expression_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [46786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2845), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(2921), 1, + anon_sym_RPAREN, + ACTIONS(2923), 1, + aux_sym_expression_token4, + STATE(983), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2925), 1, + anon_sym_RPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + anon_sym_SEMI, + STATE(1305), 1, + sym_assign_value, + STATE(1822), 1, + sym_aspect_specification, + [46841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_COMMA, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [46860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + ACTIONS(2929), 1, + anon_sym_SEMI, + STATE(1257), 1, + sym_assign_value, + STATE(1582), 1, + sym_aspect_specification, + [46879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2685), 1, + anon_sym_LPAREN, + ACTIONS(2931), 1, + aux_sym_package_specification_token2, + STATE(1301), 1, + sym_known_discriminant_part, + STATE(1547), 1, + sym_aspect_specification, + [46898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(2933), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(1030), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [46923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2940), 1, + anon_sym_LPAREN, + ACTIONS(2942), 1, + anon_sym_SEMI, + ACTIONS(2944), 1, + aux_sym_extended_global_aspect_definition_token1, + STATE(1359), 1, + sym_formal_part, + [46939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2946), 1, + anon_sym_SEMI, + ACTIONS(2948), 1, + aux_sym_package_specification_token2, + STATE(1351), 1, + sym_aspect_specification, + [46955] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + aux_sym_range_attribute_designator_token1, + STATE(1328), 1, + sym_real_range_specification, + ACTIONS(2950), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [46979] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 1, + anon_sym_SEMI, + ACTIONS(2958), 1, + aux_sym_with_clause_token2, + ACTIONS(2961), 1, + aux_sym_expression_token1, + STATE(1340), 1, + sym_record_extension_part, + [46995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2963), 1, + anon_sym_COMMA, + STATE(1037), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2966), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47009] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_SEMI, + ACTIONS(2970), 1, + aux_sym_with_clause_token2, + ACTIONS(2973), 1, + aux_sym_expression_token1, + STATE(1385), 1, + sym_record_extension_part, + [47025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2977), 1, + aux_sym_package_specification_token3, + STATE(1106), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [47039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, + aux_sym_iterator_filter_token1, + STATE(1578), 1, + sym_variant_list, + STATE(1059), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [47063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_COMMA, + STATE(1074), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(2985), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_COMMA, + STATE(1042), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(2989), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47101] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 1, + anon_sym_SEMI, + ACTIONS(2991), 1, + aux_sym_with_clause_token2, + ACTIONS(2994), 1, + aux_sym_expression_token1, + STATE(1340), 1, + sym_record_extension_part, + [47117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2996), 1, + aux_sym_compilation_unit_token1, + STATE(1389), 1, + sym_record_definition, + [47133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(1317), 1, + sym_assign_value, + ACTIONS(2998), 2, + anon_sym_SEMI, + aux_sym_extended_global_aspect_definition_token1, + [47147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 1, + sym_identifier, + ACTIONS(3002), 3, + aux_sym_subprogram_body_token1, + aux_sym_access_type_definition_token1, + aux_sym_interface_type_definition_token1, + [47159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3006), 1, + anon_sym_RPAREN, + STATE(1218), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1219), 1, + aux_sym_positional_array_aggregate_repeat1, + [47175] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(3009), 1, + aux_sym_package_specification_token2, + STATE(1445), 1, + sym_aspect_specification, + [47191] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3011), 1, + aux_sym_compilation_unit_token1, + STATE(1389), 1, + sym_record_definition, + [47207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3013), 1, + anon_sym_SEMI, + ACTIONS(3015), 1, + aux_sym_package_specification_token2, + STATE(1331), 1, + sym_aspect_specification, + [47223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 1, + anon_sym_COMMA, + STATE(1053), 1, + aux_sym_name_list_repeat1, + ACTIONS(2568), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47237] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(2391), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3020), 1, + anon_sym_COLON, + STATE(1108), 1, + aux_sym_defining_identifier_list_repeat1, + [47253] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + aux_sym_package_specification_token3, + ACTIONS(3025), 1, + aux_sym_expression_token3, + ACTIONS(3027), 1, + aux_sym_expression_token4, + STATE(1102), 1, + aux_sym_selective_accept_repeat1, + [47269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3031), 1, + aux_sym_package_specification_token2, + ACTIONS(3029), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(3036), 1, + anon_sym_SEMI, + ACTIONS(3038), 1, + aux_sym_extended_global_aspect_definition_token1, + STATE(1365), 1, + sym_formal_part, + [47307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3040), 1, + aux_sym_package_specification_token3, + STATE(1115), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [47321] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(2903), 1, + aux_sym_package_specification_token2, + STATE(1714), 1, + sym_aspect_specification, + [47337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3042), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3044), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3046), 1, + aux_sym_compilation_unit_token1, + STATE(1389), 1, + sym_record_definition, + [47365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [47375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + aux_sym_range_attribute_designator_token1, + STATE(1444), 1, + sym_real_range_specification, + ACTIONS(3048), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47389] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2890), 1, + anon_sym_SEMI, + ACTIONS(3050), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3052), 1, + aux_sym_with_clause_token1, + ACTIONS(3054), 1, + aux_sym_expression_token3, + [47405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3056), 1, + anon_sym_SEMI, + ACTIONS(3058), 1, + aux_sym_expression_token3, + STATE(1503), 1, + sym_aspect_specification, + [47421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(1313), 1, + sym_assign_value, + ACTIONS(3060), 2, + anon_sym_SEMI, + aux_sym_extended_global_aspect_definition_token1, + [47435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_SEMI, + ACTIONS(3062), 1, + aux_sym_with_clause_token2, + ACTIONS(3065), 1, + aux_sym_expression_token1, + STATE(1385), 1, + sym_record_extension_part, + [47451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [47461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [47471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [47481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3075), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 1, + anon_sym_COMMA, + STATE(1074), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3080), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3082), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47529] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2629), 1, + aux_sym_iterator_filter_token1, + STATE(1358), 1, + sym_aspect_specification, + STATE(1609), 1, + sym_entry_barrier, + [47545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_DOT, + ACTIONS(2572), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [47559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3086), 1, + aux_sym_expression_token1, + ACTIONS(3084), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(1361), 1, + sym_assign_value, + ACTIONS(3088), 2, + anon_sym_SEMI, + aux_sym_extended_global_aspect_definition_token1, + [47585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3090), 1, + anon_sym_SEMI, + ACTIONS(3092), 1, + aux_sym_package_specification_token2, + STATE(1711), 1, + sym_aspect_specification, + [47601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3094), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [47611] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_SEMI, + ACTIONS(3098), 1, + aux_sym_with_clause_token2, + ACTIONS(3101), 1, + aux_sym_expression_token1, + STATE(1439), 1, + sym_record_extension_part, + [47627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 1, + aux_sym_expression_token3, + STATE(1083), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3103), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + [47641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + STATE(1224), 1, + sym_discriminant_specification, + STATE(1507), 1, + sym_defining_identifier_list, + STATE(1509), 1, + sym_discriminant_specification_list, + [47657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2784), 1, + anon_sym_SEMI, + ACTIONS(2786), 1, + aux_sym_package_specification_token2, + STATE(1764), 1, + sym_aspect_specification, + [47673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47683] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3110), 1, + anon_sym_SEMI, + ACTIONS(3112), 1, + aux_sym_expression_token3, + STATE(1570), 1, + sym_aspect_specification, + [47699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 4, + anon_sym_COMMA, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [47709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3116), 1, + aux_sym_with_clause_token1, + STATE(1431), 1, + sym_record_definition, + [47725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3052), 1, + aux_sym_with_clause_token1, + ACTIONS(3118), 1, + anon_sym_SEMI, + ACTIONS(3120), 1, + aux_sym_expression_token3, + [47741] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3124), 1, + aux_sym_allocator_token1, + ACTIONS(3126), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3122), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [47755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + STATE(1294), 1, + sym_parameter_specification, + STATE(1552), 1, + sym_defining_identifier_list, + STATE(1566), 1, + sym_parameter_specification_list, + [47771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 1, + aux_sym_expression_token1, + ACTIONS(3128), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym_defining_identifier_list_repeat1, + ACTIONS(3135), 2, + anon_sym_COLON, + anon_sym_SEMI, + [47797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_SEMI, + ACTIONS(3137), 1, + aux_sym_with_clause_token2, + ACTIONS(3140), 1, + aux_sym_expression_token1, + STATE(1439), 1, + sym_record_extension_part, + [47813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(3142), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_actual_parameter_part, + STATE(585), 1, + sym_tick, + [47829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3144), 1, + anon_sym_SEMI, + ACTIONS(781), 3, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [47841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2784), 1, + anon_sym_SEMI, + ACTIONS(3147), 1, + aux_sym_package_specification_token2, + STATE(1443), 1, + sym_aspect_specification, + [47857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2823), 1, + aux_sym_compilation_unit_token1, + STATE(1431), 1, + sym_record_definition, + [47873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 1, + aux_sym_allocator_token1, + ACTIONS(3153), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3149), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [47887] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(2748), 1, + aux_sym_allocator_token1, + ACTIONS(3155), 1, + aux_sym_with_clause_token1, + ACTIONS(3157), 1, + aux_sym_private_type_declaration_token2, + [47903] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3025), 1, + aux_sym_expression_token3, + ACTIONS(3159), 1, + aux_sym_package_specification_token3, + ACTIONS(3161), 1, + aux_sym_expression_token4, + STATE(1083), 1, + aux_sym_selective_accept_repeat1, + [47919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3163), 1, + aux_sym_with_clause_token1, + STATE(1312), 1, + sym_record_definition, + [47935] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, + sym__enumeration_literal_specification, + STATE(1782), 1, + sym__enumeration_literal_list, + ACTIONS(3165), 2, + sym_identifier, + sym_character_literal, + [47949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3167), 1, + aux_sym_compilation_unit_token1, + STATE(1398), 1, + sym_record_definition, + [47965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3169), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3172), 1, + aux_sym_package_specification_token3, + STATE(1106), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [47979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_package_specification_token2, + ACTIONS(3029), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 1, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym_defining_identifier_list_repeat1, + ACTIONS(3177), 2, + anon_sym_COLON, + anon_sym_SEMI, + [48005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3179), 1, + aux_sym_package_specification_token2, + ACTIONS(3029), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [48017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_extended_global_aspect_definition_token1, + [48027] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3184), 1, + aux_sym_compilation_unit_token1, + STATE(1389), 1, + sym_record_definition, + [48043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3186), 1, + aux_sym_package_specification_token2, + ACTIONS(3029), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [48055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3189), 1, + sym_identifier, + STATE(951), 1, + sym_aspect_association, + STATE(978), 1, + sym_aspect_mark, + STATE(1140), 1, + sym_aspect_mark_list, + [48071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3191), 1, + aux_sym_compilation_unit_token1, + STATE(1389), 1, + sym_record_definition, + [48087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3193), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3196), 1, + aux_sym_package_specification_token3, + STATE(1115), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [48101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(1376), 1, + sym_assign_value, + ACTIONS(2464), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48115] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3198), 1, + anon_sym_SEMI, + STATE(1791), 1, + sym_aspect_specification, + [48128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3200), 1, + aux_sym_package_specification_token2, + STATE(1636), 1, + sym_aspect_specification, + [48141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3202), 1, + anon_sym_SEMI, + STATE(1760), 1, + sym_aspect_specification, + [48154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3204), 1, + anon_sym_SEMI, + STATE(1762), 1, + sym_aspect_specification, + [48167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3206), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48176] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 1, + anon_sym_RPAREN, + ACTIONS(3210), 1, + anon_sym_SEMI, + STATE(1122), 1, + aux_sym_discriminant_specification_list_repeat1, + [48189] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3213), 1, + anon_sym_SEMI, + STATE(1697), 1, + sym_aspect_specification, + [48202] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1378), 1, + sym__enumeration_literal_specification, + ACTIONS(3215), 2, + sym_identifier, + sym_character_literal, + [48213] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3217), 1, + anon_sym_COMMA, + ACTIONS(3219), 1, + anon_sym_RPAREN, + STATE(1205), 1, + aux_sym__enumeration_literal_list_repeat1, + [48226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3221), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3223), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3227), 1, + sym_identifier, + ACTIONS(3229), 1, + aux_sym_use_clause_token2, + ACTIONS(3231), 1, + aux_sym_package_body_token1, + [48266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3233), 1, + anon_sym_SEMI, + STATE(1767), 1, + sym_aspect_specification, + [48279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3235), 1, + anon_sym_SEMI, + STATE(1654), 1, + sym_aspect_specification, + [48292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3237), 1, + anon_sym_SEMI, + STATE(1719), 1, + sym_aspect_specification, + [48305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3239), 1, + anon_sym_SEMI, + STATE(1724), 1, + sym_aspect_specification, + [48318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3135), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [48327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3241), 1, + anon_sym_SEMI, + STATE(1726), 1, + sym_aspect_specification, + [48340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3243), 1, + anon_sym_SEMI, + STATE(1763), 1, + sym_aspect_specification, + [48353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, + aux_sym_use_clause_token2, + ACTIONS(3249), 1, + aux_sym_package_body_token1, + [48366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + STATE(1382), 1, + sym_parameter_specification, + STATE(1552), 1, + sym_defining_identifier_list, + [48379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3251), 1, + anon_sym_RPAREN, + ACTIONS(3253), 1, + anon_sym_SEMI, + STATE(1201), 1, + aux_sym_parameter_specification_list_repeat1, + [48392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3255), 3, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [48401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3257), 1, + anon_sym_COMMA, + ACTIONS(3260), 1, + anon_sym_RPAREN, + STATE(1141), 1, + aux_sym_record_component_association_list_repeat1, + [48414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [48423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2812), 1, + anon_sym_SEMI, + STATE(1790), 1, + sym_aspect_specification, + [48436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3264), 1, + anon_sym_SEMI, + STATE(1454), 1, + sym_aspect_specification, + [48449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 1, + anon_sym_COMMA, + ACTIONS(3269), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym_index_constraint_repeat1, + [48462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3271), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + [48471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 1, + anon_sym_COMMA, + ACTIONS(3275), 1, + anon_sym_RPAREN, + STATE(1227), 1, + aux_sym_case_expression_repeat1, + [48484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3277), 1, + anon_sym_EQ_GT, + ACTIONS(3279), 1, + anon_sym_PIPE, + STATE(1148), 1, + aux_sym_component_choice_list_repeat1, + [48497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3282), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1974), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1976), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(1174), 1, + sym_access_to_subprogram_definition, + [48519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 1, + anon_sym_COMMA, + ACTIONS(3286), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_index_constraint_repeat1, + [48532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3288), 1, + anon_sym_SEMI, + STATE(1482), 1, + sym_aspect_specification, + [48545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 1, + anon_sym_EQ_GT, + ACTIONS(3292), 1, + anon_sym_PIPE, + STATE(1153), 1, + aux_sym_exception_choice_list_repeat1, + [48558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3295), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [48567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3029), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [48576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3297), 1, + aux_sym_package_specification_token2, + STATE(1636), 1, + sym_aspect_specification, + [48589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3189), 1, + sym_identifier, + STATE(978), 1, + sym_aspect_mark, + STATE(1063), 1, + sym_aspect_association, + [48602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3299), 1, + aux_sym_package_specification_token2, + STATE(1550), 1, + sym_aspect_specification, + [48615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + STATE(1431), 1, + sym_record_definition, + [48637] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1053), 1, + aux_sym_name_list_repeat1, + ACTIONS(3303), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COMMA, + ACTIONS(3307), 1, + anon_sym_RPAREN, + STATE(1245), 1, + aux_sym_actual_parameter_part_repeat1, + [48661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 1, + anon_sym_COMMA, + ACTIONS(3312), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_global_aspect_definition_repeat1, + [48674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3314), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(857), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [48685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3317), 1, + aux_sym_package_specification_token2, + STATE(1486), 1, + sym_aspect_specification, + [48698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + STATE(1398), 1, + sym_record_definition, + [48711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_COMMA, + ACTIONS(3321), 1, + anon_sym_RPAREN, + STATE(1218), 1, + aux_sym_record_component_association_list_repeat1, + [48724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + aux_sym_primary_token1, + ACTIONS(1595), 1, + aux_sym_record_component_association_list_token1, + STATE(1389), 1, + sym_record_definition, + [48737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3323), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3325), 1, + anon_sym_SEMI, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [48757] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3328), 1, + anon_sym_EQ_GT, + ACTIONS(3330), 1, + anon_sym_PIPE, + STATE(1153), 1, + aux_sym_exception_choice_list_repeat1, + [48770] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2570), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2575), 1, + anon_sym_COLON, + ACTIONS(2577), 1, + aux_sym_iterator_specification_token1, + [48783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_EQ_GT, + STATE(1171), 1, + aux_sym_exception_choice_list_repeat1, + [48796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3334), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_COMMA, + ACTIONS(3336), 1, + anon_sym_SEMI, + STATE(1053), 1, + aux_sym_name_list_repeat1, + [48818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3338), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3340), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2857), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3342), 1, + anon_sym_SEMI, + STATE(1587), 1, + sym_aspect_specification, + [48876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3346), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3348), 1, + anon_sym_SEMI, + STATE(1766), 1, + sym_aspect_specification, + [48909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3350), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3352), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [48927] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_EQ_GT, + ACTIONS(1748), 1, + anon_sym_PIPE, + STATE(1274), 1, + aux_sym_component_choice_list_repeat1, + [48940] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3354), 1, + anon_sym_COMMA, + ACTIONS(3357), 1, + anon_sym_RPAREN, + STATE(1188), 1, + aux_sym_record_component_association_list_repeat2, + [48953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3359), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [48962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_SEMI, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [48973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + STATE(28), 1, + sym_accept_statement, + STATE(1292), 1, + sym_select_alternative, + [48986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3364), 1, + anon_sym_SEMI, + STATE(1574), 1, + sym_aspect_specification, + [48999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3366), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3368), 1, + anon_sym_SEMI, + STATE(1820), 1, + sym_aspect_specification, + [49021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3370), 1, + anon_sym_SEMI, + STATE(1801), 1, + sym_aspect_specification, + [49034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3372), 3, + anon_sym_SEMI, + anon_sym_COLON_EQ, + aux_sym_extended_global_aspect_definition_token1, + [49043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3080), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3374), 1, + anon_sym_COMMA, + ACTIONS(3376), 1, + anon_sym_RPAREN, + STATE(1297), 1, + aux_sym_pragma_g_repeat1, + [49065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3378), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [49074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3380), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3382), 1, + anon_sym_RPAREN, + ACTIONS(3384), 1, + anon_sym_SEMI, + STATE(1201), 1, + aux_sym_parameter_specification_list_repeat1, + [49096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3387), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3391), 1, + anon_sym_PIPE, + STATE(1203), 1, + aux_sym_discrete_choice_list_repeat1, + [49118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2474), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3394), 1, + anon_sym_COMMA, + ACTIONS(3397), 1, + anon_sym_RPAREN, + STATE(1205), 1, + aux_sym__enumeration_literal_list_repeat1, + [49140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 1, + anon_sym_COMMA, + ACTIONS(3399), 1, + anon_sym_RPAREN, + STATE(1147), 1, + aux_sym_case_expression_repeat1, + [49162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3403), 1, + anon_sym_SEMI, + STATE(1691), 1, + sym_aspect_specification, + [49184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3405), 1, + anon_sym_SEMI, + ACTIONS(3407), 1, + aux_sym_package_specification_token2, + ACTIONS(3409), 1, + aux_sym_expression_token3, + [49197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 1, + anon_sym_COMMA, + ACTIONS(3411), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym_index_constraint_repeat1, + [49210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3413), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3415), 1, + aux_sym_package_specification_token2, + STATE(1682), 1, + sym_aspect_specification, + [49232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + STATE(1451), 1, + sym_discriminant_specification, + STATE(1507), 1, + sym_defining_identifier_list, + [49245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3417), 1, + anon_sym_LPAREN, + STATE(1680), 1, + sym_iterated_element_association, + [49258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3419), 1, + anon_sym_SEMI, + STATE(1657), 1, + sym_aspect_specification, + [49271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3421), 1, + aux_sym_package_specification_token2, + STATE(1550), 1, + sym_aspect_specification, + [49284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_COMMA, + ACTIONS(3423), 1, + anon_sym_RPAREN, + STATE(1141), 1, + aux_sym_record_component_association_list_repeat1, + [49297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COMMA, + ACTIONS(3427), 1, + anon_sym_RPAREN, + STATE(1037), 1, + aux_sym_positional_array_aggregate_repeat1, + [49310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + sym_identifier, + STATE(1400), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [49321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_COMMA, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [49332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3433), 1, + anon_sym_RPAREN, + ACTIONS(3435), 1, + anon_sym_SEMI, + STATE(1122), 1, + aux_sym_discriminant_specification_list_repeat1, + [49345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COMMA, + ACTIONS(3437), 1, + anon_sym_RPAREN, + STATE(1162), 1, + aux_sym_actual_parameter_part_repeat1, + [49358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_SEMI, + ACTIONS(3439), 1, + anon_sym_RPAREN, + STATE(1222), 1, + aux_sym_discriminant_specification_list_repeat1, + [49371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_RPAREN, + STATE(1284), 1, + aux_sym__index_subtype_definition_list_repeat1, + [49384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 3, + anon_sym_RPAREN, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [49393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3447), 1, + anon_sym_COMMA, + ACTIONS(3450), 1, + anon_sym_RPAREN, + STATE(1227), 1, + aux_sym_case_expression_repeat1, + [49406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(3454), 1, + anon_sym_RPAREN, + STATE(1291), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [49419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3456), 1, + anon_sym_SEMI, + STATE(1685), 1, + sym_aspect_specification, + [49432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3217), 1, + anon_sym_COMMA, + ACTIONS(3458), 1, + anon_sym_RPAREN, + STATE(1125), 1, + aux_sym__enumeration_literal_list_repeat1, + [49445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2776), 1, + anon_sym_SEMI, + STATE(1544), 1, + sym_aspect_specification, + [49458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3460), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_aspect_specification, + [49471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3462), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3464), 1, + anon_sym_COMMA, + ACTIONS(3466), 1, + anon_sym_RBRACK, + STATE(1037), 1, + aux_sym_positional_array_aggregate_repeat1, + [49493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3470), 1, + anon_sym_EQ_GT, + ACTIONS(3472), 1, + anon_sym_PIPE, + STATE(1203), 1, + aux_sym_discrete_choice_list_repeat1, + [49515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 1, + aux_sym_allocator_token1, + ACTIONS(3474), 1, + aux_sym_with_clause_token1, + ACTIONS(3476), 1, + aux_sym_private_type_declaration_token2, + [49528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1974), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1976), 1, + aux_sym_access_to_subprogram_definition_token2, + STATE(1126), 1, + sym_access_to_subprogram_definition, + [49541] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1268), 1, + sym_quantifier, + ACTIONS(2655), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [49552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COMMA, + ACTIONS(3478), 1, + anon_sym_RPAREN, + STATE(1219), 1, + aux_sym_positional_array_aggregate_repeat1, + [49565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3480), 1, + anon_sym_COMMA, + ACTIONS(3482), 1, + anon_sym_RPAREN, + STATE(1188), 1, + aux_sym_record_component_association_list_repeat2, + [49578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3484), 1, + sym_identifier, + STATE(1393), 1, + sym__named_record_component_association, + STATE(1603), 1, + sym_component_choice_list, + [49591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3480), 1, + anon_sym_COMMA, + ACTIONS(3486), 1, + anon_sym_RPAREN, + STATE(1241), 1, + aux_sym_record_component_association_list_repeat2, + [49604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3488), 1, + anon_sym_COMMA, + ACTIONS(3491), 1, + anon_sym_RPAREN, + STATE(1245), 1, + aux_sym_actual_parameter_part_repeat1, + [49626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_COMMA, + ACTIONS(3493), 1, + anon_sym_SEMI, + STATE(1053), 1, + aux_sym_name_list_repeat1, + [49639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3495), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 1, + aux_sym_expression_token2, + ACTIONS(3499), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3501), 1, + anon_sym_SEMI, + STATE(1709), 1, + sym_aspect_specification, + [49672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(1760), 1, + anon_sym_COLON, + STATE(1108), 1, + aux_sym_defining_identifier_list_repeat1, + [49685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3503), 1, + anon_sym_SEMI, + ACTIONS(3505), 1, + aux_sym_with_clause_token1, + [49698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3507), 1, + anon_sym_SEMI, + STATE(1483), 1, + sym_aspect_specification, + [49711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3509), 1, + anon_sym_EQ_GT, + STATE(1236), 1, + aux_sym_discrete_choice_list_repeat1, + [49724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3511), 1, + anon_sym_SEMI, + STATE(1596), 1, + sym_aspect_specification, + [49737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3513), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3515), 1, + anon_sym_SEMI, + STATE(1583), 1, + sym_aspect_specification, + [49759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3517), 1, + anon_sym_SEMI, + STATE(1703), 1, + sym_aspect_specification, + [49772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3519), 1, + anon_sym_SEMI, + STATE(1487), 1, + sym_aspect_specification, + [49785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3521), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(499), 1, + aux_sym_value_sequence_token1, + STATE(1850), 1, + sym_iterated_element_association, + [49807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_COMMA, + ACTIONS(3525), 1, + anon_sym_RPAREN, + STATE(1303), 1, + aux_sym_global_aspect_definition_repeat1, + [49820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(3527), 1, + aux_sym_attribute_designator_token3, + STATE(1446), 1, + sym_real_range_specification, + [49833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3533), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 1, + aux_sym_iterator_filter_token1, + STATE(1039), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [49871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3535), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + sym_identifier, + STATE(1877), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [49891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3539), 1, + anon_sym_SEMI, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [49911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3542), 1, + anon_sym_SEMI, + STATE(1849), 1, + sym_aspect_specification, + [49924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3546), 1, + anon_sym_SEMI, + STATE(1695), 1, + sym_aspect_specification, + [49946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1748), 1, + anon_sym_PIPE, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(1148), 1, + aux_sym_component_choice_list_repeat1, + [49959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3050), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3124), 1, + aux_sym_allocator_token1, + [49972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3550), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3552), 1, + anon_sym_COMMA, + ACTIONS(3555), 1, + anon_sym_RPAREN, + STATE(1277), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [49994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3559), 1, + aux_sym_package_specification_token2, + STATE(1632), 1, + sym_aspect_specification, + [50016] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1980), 1, + aux_sym_iterator_filter_token1, + STATE(1182), 1, + sym_guard_select, + STATE(1191), 1, + sym_guard, + [50029] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3561), 1, + anon_sym_SEMI, + STATE(1536), 1, + sym_aspect_specification, + [50042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3563), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_entry_declaration_token1, + [50051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2383), 1, + anon_sym_SEMI, + STATE(1506), 1, + sym_aspect_specification, + [50064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + anon_sym_COMMA, + ACTIONS(3565), 1, + anon_sym_RPAREN, + STATE(1287), 1, + aux_sym__index_subtype_definition_list_repeat1, + [50077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3567), 1, + anon_sym_SEMI, + STATE(1758), 1, + sym_aspect_specification, + [50090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_COMMA, + ACTIONS(3574), 1, + anon_sym_RPAREN, + STATE(1287), 1, + aux_sym__index_subtype_definition_list_repeat1, + [50112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + anon_sym_COMMA, + ACTIONS(3581), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_pragma_g_repeat1, + [50134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3583), 1, + anon_sym_SEMI, + STATE(1640), 1, + sym_aspect_specification, + [50147] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(3585), 1, + anon_sym_RPAREN, + STATE(1277), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [50160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3587), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [50169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3589), 1, + anon_sym_SEMI, + STATE(1676), 1, + sym_aspect_specification, + [50182] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + anon_sym_SEMI, + ACTIONS(3591), 1, + anon_sym_RPAREN, + STATE(1139), 1, + aux_sym_parameter_specification_list_repeat1, + [50195] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3593), 1, + anon_sym_SEMI, + STATE(1708), 1, + sym_aspect_specification, + [50208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3595), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3374), 1, + anon_sym_COMMA, + ACTIONS(3597), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_pragma_g_repeat1, + [50230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3599), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [50239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + sym_identifier, + STATE(1847), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [50259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3603), 1, + aux_sym_package_specification_token2, + STATE(1886), 1, + sym_aspect_specification, + [50272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3605), 1, + anon_sym_SEMI, + STATE(1734), 1, + sym_aspect_specification, + [50285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_COMMA, + ACTIONS(3607), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_global_aspect_definition_repeat1, + [50298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 1, + anon_sym_SEMI, + ACTIONS(775), 2, + anon_sym_SQUOTE, + anon_sym_LPAREN, + [50309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(2373), 1, + anon_sym_SEMI, + STATE(1567), 1, + sym_aspect_specification, + [50322] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_with_clause_token2, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(1829), 1, + sym_aspect_specification, + [50335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_with_clause_token2, + STATE(1315), 1, + sym_record_extension_part, + [50345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + sym_identifier, + ACTIONS(3622), 1, + anon_sym_SEMI, + [50371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, + sym_identifier, + ACTIONS(3626), 1, + anon_sym_SEMI, + [50381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 2, + anon_sym_SEMI, + aux_sym_extended_global_aspect_definition_token1, + [50397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3630), 1, + aux_sym_package_specification_token3, + ACTIONS(3632), 1, + aux_sym_exception_declaration_token1, + [50407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3634), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3636), 1, + sym_identifier, + ACTIONS(3638), 1, + anon_sym_SEMI, + [50425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 2, + anon_sym_SEMI, + aux_sym_extended_global_aspect_definition_token1, + [50433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3581), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3574), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3640), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3642), 1, + sym_identifier, + ACTIONS(3644), 1, + anon_sym_SEMI, + [50467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3646), 1, + sym_identifier, + ACTIONS(3648), 1, + anon_sym_SEMI, + [50477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3650), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3652), 1, + aux_sym_with_clause_token2, + [50487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3654), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [50495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3656), 1, + sym_identifier, + ACTIONS(3658), 1, + anon_sym_SEMI, + [50505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [50513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3664), 1, + anon_sym_SEMI, + [50523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3124), 1, + aux_sym_allocator_token1, + [50541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3555), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3668), 1, + anon_sym_SEMI, + ACTIONS(3670), 1, + aux_sym_package_specification_token2, + [50559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3672), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3674), 1, + aux_sym_with_clause_token2, + STATE(1437), 1, + sym_record_extension_part, + [50577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3676), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3678), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3680), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [50609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, + aux_sym_attribute_designator_token1, + STATE(1259), 1, + sym_access_to_object_definition, + [50619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3688), 1, + aux_sym_with_clause_token1, + [50629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3692), 1, + sym_identifier, + ACTIONS(3694), 1, + anon_sym_SEMI, + [50647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3696), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 1, + sym_identifier, + ACTIONS(3700), 1, + anon_sym_SEMI, + [50665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3704), 1, + sym_identifier, + ACTIONS(3706), 1, + anon_sym_SEMI, + [50683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3708), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [50699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3710), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + anon_sym_COMMA, + ACTIONS(3712), 1, + anon_sym_RBRACK, + [50717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + aux_sym_allocator_token1, + ACTIONS(2750), 1, + aux_sym_interface_type_definition_token2, + [50727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, + anon_sym_SEMI, + ACTIONS(3717), 1, + aux_sym_package_specification_token2, + [50737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3151), 1, + aux_sym_allocator_token1, + [50747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3719), 1, + aux_sym_with_clause_token2, + ACTIONS(3721), 1, + aux_sym_expression_token1, + [50757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3723), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_with_clause_token2, + STATE(1340), 1, + sym_record_extension_part, + [50775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3491), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_COMMA, + STATE(1037), 1, + aux_sym_positional_array_aggregate_repeat1, + [50793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + aux_sym_iterator_filter_token1, + STATE(1722), 1, + sym_entry_barrier, + [50803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_SEMI, + ACTIONS(3729), 1, + aux_sym_extended_global_aspect_definition_token1, + [50813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 1, + sym_identifier, + ACTIONS(3733), 1, + anon_sym_SEMI, + [50823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 2, + anon_sym_SEMI, + aux_sym_extended_global_aspect_definition_token1, + [50831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [50847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3739), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3741), 1, + anon_sym_SEMI, + ACTIONS(3743), 1, + aux_sym_extended_global_aspect_definition_token1, + [50865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3450), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3745), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [50881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + aux_sym_result_profile_token1, + STATE(807), 1, + sym_result_profile, + [50891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2946), 1, + anon_sym_SEMI, + ACTIONS(2948), 1, + aux_sym_package_specification_token2, + [50901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [50909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + sym_identifier, + ACTIONS(3751), 1, + anon_sym_SEMI, + [50919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3753), 1, + sym_identifier, + ACTIONS(3755), 1, + anon_sym_SEMI, + [50929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2718), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [50937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3759), 1, + anon_sym_SEMI, + [50947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 1, + sym_identifier, + ACTIONS(3763), 1, + anon_sym_SEMI, + [50957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [50965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3765), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3397), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2665), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [50989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3767), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3769), 1, + aux_sym_iterator_filter_token1, + STATE(1366), 1, + sym_case_expression_alternative, + [51007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3382), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 1, + anon_sym_SEMI, + ACTIONS(3773), 1, + aux_sym_extended_global_aspect_definition_token1, + [51025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, + aux_sym_use_clause_token2, + [51035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 1, + sym_identifier, + ACTIONS(3777), 1, + anon_sym_SEMI, + [51053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3779), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3359), 1, + anon_sym_SEMI, + ACTIONS(3781), 1, + aux_sym_package_specification_token2, + [51071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + aux_sym_with_clause_token2, + STATE(1340), 1, + sym_record_extension_part, + [51089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3788), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, + aux_sym_package_specification_token2, + [51099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3227), 1, + sym_identifier, + ACTIONS(3229), 1, + aux_sym_use_clause_token2, + [51109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3357), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + aux_sym_package_specification_token3, + ACTIONS(219), 1, + aux_sym_subprogram_body_token1, + [51127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + sym_identifier, + ACTIONS(3794), 1, + anon_sym_SEMI, + [51137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 1, + sym_identifier, + ACTIONS(3800), 1, + anon_sym_SEMI, + [51155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3802), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, + aux_sym_with_clause_token2, + ACTIONS(3806), 1, + aux_sym_expression_token1, + [51173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(3810), 1, + anon_sym_EQ_GT, + [51183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym_identifier, + ACTIONS(3814), 1, + anon_sym_SEMI, + [51193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, + sym_identifier, + ACTIONS(3818), 1, + anon_sym_SEMI, + [51203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3312), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + aux_sym_iterated_element_association_token1, + STATE(1747), 1, + sym_iterated_element_association, + [51221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3820), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(3822), 1, + aux_sym_access_to_subprogram_definition_token2, + [51231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(3826), 1, + anon_sym_SEMI, + [51241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + sym_identifier, + STATE(193), 1, + sym_reduction_attribute_designator, + [51251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3830), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3832), 1, + aux_sym_with_clause_token1, + [51277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3834), 1, + sym_identifier, + ACTIONS(3836), 1, + anon_sym_SEMI, + [51287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + sym_identifier, + ACTIONS(3840), 1, + anon_sym_SEMI, + [51297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [51305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [51313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(1407), 1, + sym_tick, + [51323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + aux_sym_iterator_filter_token1, + STATE(1609), 1, + sym_entry_barrier, + [51349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [51357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3769), 1, + aux_sym_iterator_filter_token1, + STATE(1207), 1, + sym_case_expression_alternative, + [51367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3850), 1, + sym_identifier, + ACTIONS(3852), 1, + anon_sym_SEMI, + [51377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + anon_sym_COLON, + ACTIONS(3856), 1, + anon_sym_SEMI, + [51387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3858), 1, + aux_sym_with_clause_token2, + ACTIONS(3860), 1, + aux_sym_expression_token1, + [51405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3389), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 1, + aux_sym_package_specification_token3, + ACTIONS(3864), 1, + aux_sym_subprogram_body_token1, + [51423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3277), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2098), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2100), 1, + aux_sym_access_to_subprogram_definition_token2, + [51441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + sym_identifier, + ACTIONS(3868), 1, + anon_sym_SEMI, + [51451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(1370), 1, + sym_formal_part, + [51477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 1, + aux_sym_expression_token3, + ACTIONS(3879), 1, + aux_sym_expression_token4, + [51511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [51527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [51543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + aux_sym_with_clause_token2, + STATE(1315), 1, + sym_record_extension_part, + [51553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3889), 1, + sym_identifier, + ACTIONS(3891), 1, + anon_sym_SEMI, + [51563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_SEMI, + ACTIONS(3317), 1, + aux_sym_package_specification_token2, + [51573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3893), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 1, + anon_sym_SEMI, + ACTIONS(3897), 1, + aux_sym_package_specification_token2, + [51591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 1, + sym_identifier, + ACTIONS(3903), 1, + anon_sym_SEMI, + [51609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 1, + sym_identifier, + ACTIONS(3907), 1, + anon_sym_SEMI, + [51619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_with_clause_token2, + STATE(1437), 1, + sym_record_extension_part, + [51629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_COLON_EQ, + STATE(1693), 1, + sym_assign_value, + [51655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_SEMI, + [51662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + anon_sym_SEMI, + [51669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_SEMI, + [51676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 1, + anon_sym_RPAREN, + [51683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_RPAREN, + [51690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_SQUOTE, + [51697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 1, + aux_sym_subunit_token1, + [51704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 1, + aux_sym_package_specification_token2, + [51711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3840), 1, + anon_sym_SEMI, + [51718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3925), 1, + anon_sym_SEMI, + [51725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 1, + anon_sym_RPAREN, + [51732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 1, + anon_sym_SEMI, + [51739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_RBRACK, + [51746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + aux_sym_subprogram_body_token1, + [51753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, + aux_sym_compilation_unit_token1, + [51760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 1, + anon_sym_RPAREN, + [51767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3933), 1, + anon_sym_SEMI, + [51774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3935), 1, + anon_sym_SEMI, + [51781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 1, + anon_sym_SEMI, + [51788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3011), 1, + aux_sym_compilation_unit_token1, + [51795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 1, + aux_sym_with_clause_token2, + [51802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 1, + anon_sym_SEMI, + [51809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + aux_sym_primary_token1, + [51816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, + anon_sym_SEMI, + [51823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 1, + anon_sym_RPAREN, + [51830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 1, + anon_sym_EQ_GT, + [51837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3951), 1, + aux_sym_package_specification_token3, + [51844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3953), 1, + aux_sym_package_specification_token3, + [51851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3955), 1, + aux_sym_subprogram_body_token1, + [51858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 1, + anon_sym_SEMI, + [51865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3959), 1, + anon_sym_SEMI, + [51872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 1, + aux_sym_package_specification_token2, + [51879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 1, + aux_sym_with_clause_token2, + [51886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3897), 1, + aux_sym_package_specification_token2, + [51893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3965), 1, + anon_sym_SEMI, + [51900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_LPAREN, + [51907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + [51914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 1, + anon_sym_LT_GT, + [51921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 1, + anon_sym_SEMI, + [51928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 1, + aux_sym_compilation_unit_token1, + [51935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + anon_sym_EQ_GT, + [51942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 1, + anon_sym_RPAREN, + [51949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT_DOT, + [51956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + aux_sym_compilation_unit_token1, + [51963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3983), 1, + anon_sym_LPAREN, + [51970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 1, + anon_sym_RPAREN, + [51977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_SEMI, + [51984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + [51991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + aux_sym_iterated_element_association_token2, + [51998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + aux_sym_iterated_element_association_token2, + [52005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 1, + anon_sym_SEMI, + [52012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + anon_sym_RPAREN, + [52019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 1, + aux_sym_allocator_token1, + [52026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3419), 1, + anon_sym_SEMI, + [52033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_COLON, + [52040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + aux_sym_package_specification_token3, + [52047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3999), 1, + anon_sym_RPAREN, + [52054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 1, + aux_sym_if_expression_token1, + [52061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + aux_sym_record_component_association_list_token1, + [52068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + anon_sym_SEMI, + [52075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + aux_sym_package_specification_token3, + [52082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4009), 1, + aux_sym_range_attribute_designator_token1, + [52089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4011), 1, + aux_sym_loop_statement_token1, + [52096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4013), 1, + anon_sym_SEMI, + [52103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4015), 1, + anon_sym_SEMI, + [52110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4017), 1, + anon_sym_SEMI, + [52117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4019), 1, + anon_sym_SEMI, + [52124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 1, + aux_sym_component_list_token1, + [52131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4023), 1, + aux_sym_package_specification_token3, + [52138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + aux_sym_asynchronous_select_token2, + [52145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4027), 1, + aux_sym_record_component_association_list_token1, + [52152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 1, + aux_sym_interface_type_definition_token2, + [52159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_SEMI, + [52166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 1, + aux_sym_expression_token2, + [52173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4031), 1, + anon_sym_SQUOTE, + [52180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_SEMI, + [52187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + aux_sym_package_specification_token3, + [52194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3644), 1, + anon_sym_SEMI, + [52201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 1, + anon_sym_SEMI, + [52208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 1, + aux_sym_asynchronous_select_token1, + [52215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 1, + aux_sym_package_specification_token3, + [52222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_SEMI, + [52229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 1, + aux_sym_iterator_specification_token1, + [52236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 1, + anon_sym_SEMI, + [52243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 1, + anon_sym_RPAREN, + [52250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4049), 1, + anon_sym_SEMI, + [52257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 1, + aux_sym_iterator_specification_token1, + [52264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_SEMI, + [52271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_SEMI, + [52278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_SEMI, + [52285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 1, + anon_sym_SEMI, + [52292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, + anon_sym_SEMI, + [52299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 1, + aux_sym_asynchronous_select_token2, + [52306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_SEMI, + [52313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3603), 1, + aux_sym_package_specification_token2, + [52320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + aux_sym_package_specification_token3, + [52327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_EQ_GT, + [52334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + aux_sym_package_specification_token2, + [52341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + aux_sym_asynchronous_select_token1, + [52348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 1, + anon_sym_COLON, + [52355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + aux_sym_component_list_token1, + [52362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 1, + aux_sym_asynchronous_select_token1, + [52369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_SEMI, + [52376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, + anon_sym_SEMI, + [52383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + sym_identifier, + [52390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 1, + anon_sym_SEMI, + [52397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4087), 1, + aux_sym_if_expression_token1, + [52404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 1, + aux_sym_expression_token2, + [52411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + aux_sym_package_specification_token3, + [52418] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_SEMI, + [52425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + anon_sym_SEMI, + [52432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 1, + anon_sym_SEMI, + [52439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_package_specification_token3, + [52446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, + anon_sym_RPAREN, + [52453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2383), 1, + anon_sym_SEMI, + [52460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_package_specification_token3, + [52467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 1, + sym_identifier, + [52474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + anon_sym_SEMI, + [52481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_iterated_element_association_token2, + [52488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 1, + aux_sym_iterated_element_association_token2, + [52495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + aux_sym_chunk_specification_token1, + [52502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3546), 1, + anon_sym_SEMI, + [52509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + aux_sym_compilation_unit_token1, + [52516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4111), 1, + sym_identifier, + [52523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 1, + aux_sym_allocator_token1, + [52530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 1, + aux_sym_package_specification_token3, + [52537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 1, + anon_sym_RPAREN, + [52544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 1, + anon_sym_RPAREN, + [52551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 1, + anon_sym_RBRACK, + [52558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3517), 1, + anon_sym_SEMI, + [52565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_SEMI, + [52572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3519), 1, + anon_sym_SEMI, + [52579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + sym_identifier, + [52586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + sym_identifier, + [52593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym_SEMI, + [52600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + aux_sym_compilation_unit_token1, + [52607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 1, + anon_sym_SEMI, + [52614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3719), 1, + aux_sym_with_clause_token2, + [52621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4131), 1, + anon_sym_COLON, + [52628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 1, + anon_sym_SEMI, + [52635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4133), 1, + anon_sym_EQ_GT, + [52642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + aux_sym_subprogram_body_token1, + [52649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 1, + aux_sym_package_specification_token3, + [52656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 1, + anon_sym_SEMI, + [52663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 1, + anon_sym_RPAREN, + [52670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 1, + aux_sym_expression_token2, + [52677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, + anon_sym_RPAREN, + [52684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 1, + anon_sym_SEMI, + [52691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_SEMI, + [52698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 1, + anon_sym_SEMI, + [52705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + [52712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4153), 1, + aux_sym_with_clause_token2, + [52719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_RPAREN, + [52726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 1, + sym_identifier, + [52733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_RPAREN, + [52740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 1, + aux_sym_package_specification_token2, + [52747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4163), 1, + aux_sym_package_specification_token2, + [52754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_RPAREN, + [52761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_SEMI, + [52768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 1, + aux_sym_with_clause_token2, + [52775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 1, + anon_sym_SEMI, + [52782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 1, + aux_sym_with_clause_token2, + [52789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_SEMI, + [52796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, + aux_sym_attribute_designator_token2, + [52803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_SEMI, + [52810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + [52817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, + anon_sym_RBRACK, + [52824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 1, + anon_sym_RPAREN, + [52831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4185), 1, + aux_sym_expression_token2, + [52838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + aux_sym_package_specification_token3, + [52845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + anon_sym_SEMI, + [52852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_EQ_GT, + [52859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 1, + aux_sym_entry_declaration_token1, + [52866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 1, + anon_sym_RPAREN, + [52873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 1, + anon_sym_RBRACK, + [52880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, + anon_sym_RPAREN, + [52887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4195), 1, + anon_sym_SEMI, + [52894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_SEMI, + [52901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_SEMI, + [52908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 1, + aux_sym_package_specification_token2, + [52915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 1, + aux_sym_with_clause_token2, + [52922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + aux_sym_package_specification_token2, + [52929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_SEMI, + [52936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + aux_sym_package_specification_token2, + [52943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 1, + anon_sym_RPAREN, + [52950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + aux_sym_package_specification_token3, + [52957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 1, + aux_sym_expression_token2, + [52964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4215), 1, + anon_sym_SEMI, + [52971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 1, + anon_sym_SEMI, + [52978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4219), 1, + aux_sym_package_specification_token2, + [52985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + aux_sym_package_specification_token2, + [52992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 1, + aux_sym_compilation_unit_token1, + [52999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + aux_sym_iterated_element_association_token2, + [53006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_RPAREN, + [53013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 1, + aux_sym_with_clause_token2, + [53020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + anon_sym_RPAREN, + [53027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_SEMI, + [53034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_RPAREN, + [53041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym_EQ_GT, + [53048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + aux_sym_package_specification_token3, + [53055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, + aux_sym_accept_statement_token1, + [53062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + anon_sym_SEMI, + [53069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 1, + aux_sym_package_specification_token3, + [53076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, + anon_sym_SEMI, + [53083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 1, + anon_sym_SEMI, + [53090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 1, + anon_sym_SEMI, + [53097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4249), 1, + aux_sym_package_specification_token3, + [53104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 1, + aux_sym_package_specification_token2, + [53111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4253), 1, + aux_sym_if_expression_token1, + [53118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 1, + anon_sym_SEMI, + [53125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_SEMI, + [53132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + aux_sym_component_list_token1, + [53139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 1, + aux_sym_package_specification_token3, + [53146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4261), 1, + anon_sym_SEMI, + [53153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + aux_sym_with_clause_token2, + [53160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 1, + aux_sym_package_specification_token3, + [53167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_LT_GT, + [53174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 1, + aux_sym_with_clause_token2, + [53181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 1, + aux_sym_asynchronous_select_token1, + [53188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + anon_sym_SEMI, + [53195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + aux_sym_at_clause_token1, + [53202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4275), 1, + anon_sym_SQUOTE, + [53209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_SEMI, + [53216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4279), 1, + anon_sym_SEMI, + [53223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4281), 1, + anon_sym_RPAREN, + [53230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + anon_sym_SEMI, + [53237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4283), 1, + aux_sym_package_specification_token3, + [53244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + anon_sym_RBRACK, + [53251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + anon_sym_SEMI, + [53258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 1, + aux_sym_package_specification_token2, + [53265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 1, + sym_identifier, + [53272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4291), 1, + sym_identifier, + [53279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_SEMI, + [53286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4295), 1, + anon_sym_DOT_DOT, + [53293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 1, + aux_sym_allocator_token1, + [53300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 1, + aux_sym_compilation_unit_token1, + [53307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 1, + aux_sym_object_renaming_declaration_token1, + [53314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + aux_sym_allocator_token1, + [53321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 1, + anon_sym_SEMI, + [53328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_SEMI, + [53335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 1, + anon_sym_SEMI, + [53342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, + aux_sym_object_renaming_declaration_token1, + [53349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + anon_sym_SEMI, + [53356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4307), 1, + aux_sym_record_component_association_list_token1, + [53363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + anon_sym_SEMI, + [53370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 1, + aux_sym_package_specification_token3, + [53377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_EQ_GT, + [53384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 1, + aux_sym_case_expression_token1, + [53391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 1, + aux_sym_loop_statement_token1, + [53398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + aux_sym_primary_token1, + [53405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + anon_sym_SEMI, + [53412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, + aux_sym_package_specification_token3, + [53419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4323), 1, + aux_sym_allocator_token1, + [53426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + aux_sym_with_clause_token2, + [53433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 1, + aux_sym_compilation_unit_token1, + [53440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_SEMI, + [53447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4327), 1, + anon_sym_SEMI, + [53454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4329), 1, + anon_sym_SEMI, + [53461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 1, + anon_sym_SEMI, + [53468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 1, + aux_sym_subprogram_body_token1, + [53475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4333), 1, + aux_sym_primary_token1, + [53482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 1, + anon_sym_SEMI, + [53489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4335), 1, + anon_sym_SEMI, + [53496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + aux_sym_private_type_declaration_token1, + [53503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4337), 1, + aux_sym_chunk_specification_token1, + [53510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_SEMI, + [53517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + anon_sym_SEMI, + [53524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4339), 1, + sym_identifier, + [53531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(229), 1, + aux_sym_subprogram_body_token1, + [53538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4341), 1, + aux_sym_package_specification_token2, + [53545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4343), 1, + aux_sym_loop_statement_token1, + [53552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3202), 1, + anon_sym_SEMI, + [53559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4345), 1, + aux_sym_package_specification_token3, + [53566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 1, + anon_sym_SEMI, + [53573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 1, + aux_sym_package_specification_token3, + [53580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym_RPAREN, + [53587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_SEMI, + [53594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4353), 1, + sym_identifier, + [53601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4355), 1, + aux_sym_general_access_modifier_token1, + [53608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4357), 1, + anon_sym_SEMI, + [53615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 1, + anon_sym_SEMI, + [53622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4361), 1, + anon_sym_SEMI, + [53629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3826), 1, + anon_sym_SEMI, + [53636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 1, + anon_sym_SEMI, + [53643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4365), 1, + aux_sym_package_specification_token2, + [53650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_SEMI, + [53657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + aux_sym_with_clause_token2, + [53664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4369), 1, + aux_sym_compilation_unit_token1, + [53671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4371), 1, + aux_sym_loop_statement_token1, + [53678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4373), 1, + aux_sym_package_specification_token3, + [53685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4375), 1, + anon_sym_SEMI, + [53692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 1, + anon_sym_SEMI, + [53699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + aux_sym_record_component_association_list_token1, + [53706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 1, + anon_sym_EQ_GT, + [53713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 1, + anon_sym_RBRACK, + [53720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 1, + anon_sym_RPAREN, + [53727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 1, + anon_sym_SEMI, + [53734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 1, + anon_sym_SEMI, + [53741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + anon_sym_SEMI, + [53748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 1, + anon_sym_SEMI, + [53755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 1, + anon_sym_SEMI, + [53762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 1, + aux_sym_record_component_association_list_token1, + [53769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 1, + aux_sym_attribute_designator_token4, + [53776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 1, + aux_sym_subprogram_body_token1, + [53783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_SEMI, + [53790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 1, + anon_sym_SEMI, + [53797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 1, + aux_sym_asynchronous_select_token1, + [53804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 1, + anon_sym_SEMI, + [53811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(209), 1, + aux_sym_private_type_declaration_token1, + [53818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_SEMI, + [53825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + anon_sym_SEMI, + [53832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_SEMI, + [53839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 1, + anon_sym_SEMI, + [53846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 1, + anon_sym_SEMI, + [53853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_SEMI, + [53860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 1, + anon_sym_SEMI, + [53867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + aux_sym_compilation_unit_token1, + [53874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 1, + aux_sym_with_clause_token2, + [53881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_SEMI, + [53888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_RPAREN, + [53895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + aux_sym_expression_token2, + [53902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + anon_sym_SEMI, + [53909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + aux_sym_loop_statement_token1, + [53916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, + aux_sym_package_specification_token3, + [53923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 1, + anon_sym_GT_GT, + [53930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + aux_sym_subprogram_body_token1, + [53937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 1, + aux_sym_package_specification_token3, + [53944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + anon_sym_COLON, + [53951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + anon_sym_RPAREN, + [53958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 1, + anon_sym_RPAREN, + [53965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 1, + sym_identifier, + [53972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 1, + anon_sym_SEMI, + [53979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 1, + anon_sym_RPAREN, + [53986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 1, + anon_sym_SEMI, + [53993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 1, + aux_sym_compilation_unit_token1, + [54000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_RPAREN, + [54007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4453), 1, + aux_sym_with_clause_token2, + [54014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 1, + anon_sym_SEMI, + [54021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + anon_sym_SEMI, + [54028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 1, + anon_sym_SEMI, + [54035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 1, + sym_identifier, + [54042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_identifier, + [54049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_SEMI, + [54056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3763), 1, + anon_sym_SEMI, + [54063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 1, + aux_sym_package_specification_token2, + [54070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 1, + anon_sym_SEMI, + [54077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(233), 1, + aux_sym_subprogram_body_token1, + [54084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + sym_identifier, + [54091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3368), 1, + anon_sym_SEMI, + [54098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 1, + aux_sym_package_specification_token3, + [54105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4473), 1, + aux_sym_package_specification_token3, + [54112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 1, + aux_sym_component_list_token1, + [54119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 1, + aux_sym_compilation_unit_token1, + [54126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + sym_identifier, + [54133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + anon_sym_RPAREN, + [54140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 1, + aux_sym_package_specification_token3, + [54147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4485), 1, + anon_sym_SEMI, + [54154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, + aux_sym_package_specification_token3, + [54161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + aux_sym_subprogram_body_token1, + [54168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4491), 1, + aux_sym_asynchronous_select_token1, + [54175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4493), 1, + aux_sym_package_specification_token3, + [54182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4495), 1, + aux_sym_asynchronous_select_token1, + [54189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 1, + aux_sym_compilation_unit_token1, + [54196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + aux_sym_result_profile_token1, + [54203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 1, + aux_sym_package_specification_token3, + [54210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3593), 1, + anon_sym_SEMI, + [54217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 1, + aux_sym_if_expression_token1, + [54224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_SEMI, + [54231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 1, + anon_sym_SEMI, + [54238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2373), 1, + anon_sym_SEMI, + [54245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 1, + aux_sym_package_specification_token3, + [54252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3626), 1, + anon_sym_SEMI, + [54259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 1, + aux_sym_component_list_token1, + [54266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + aux_sym_iterated_element_association_token2, + [54273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4513), 1, + sym_identifier, + [54280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 1, + anon_sym_COLON, + [54287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 1, + anon_sym_SEMI, + [54294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_SEMI, + [54301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + aux_sym_package_specification_token3, + [54308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 1, + anon_sym_LT_GT, + [54315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 1, + aux_sym_package_specification_token3, + [54322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_SEMI, + [54329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_LT_GT, + [54336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 1, + anon_sym_SEMI, + [54343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 1, + anon_sym_LT_GT, + [54350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 1, + anon_sym_LT_GT, + [54357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 1, + anon_sym_SEMI, + [54364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_LT_GT, + [54371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 1, + aux_sym_with_clause_token2, + [54378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + aux_sym_allocator_token1, + [54385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 1, + aux_sym_allocator_token1, + [54392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_SEMI, + [54399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(285), 1, + aux_sym_subprogram_body_token1, + [54406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 1, + aux_sym_use_clause_token2, + [54413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 1, + aux_sym_loop_statement_token1, + [54420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 1, + aux_sym_allocator_token1, + [54427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 1, + anon_sym_SEMI, + [54434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 1, + anon_sym_RBRACK, + [54441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, + anon_sym_SEMI, + [54448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 1, + anon_sym_SEMI, + [54455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + aux_sym_with_clause_token2, + [54462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 1, + aux_sym_package_body_token1, + [54469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 1, + aux_sym_package_body_token1, + [54476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 1, + aux_sym_package_body_token1, + [54483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + sym_identifier, + [54490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4563), 1, + aux_sym_case_expression_token1, + [54497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + aux_sym_loop_statement_token1, + [54504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 1, + anon_sym_EQ_GT, + [54511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4567), 1, + anon_sym_EQ_GT, + [54518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 1, + anon_sym_COLON, + [54525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + [54532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 1, + anon_sym_RPAREN, + [54539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_COMMA, + [54546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 1, + anon_sym_EQ_GT, + [54553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_SEMI, + [54560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4577), 1, + anon_sym_SEMI, + [54567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4579), 1, + aux_sym_with_clause_token2, + [54574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_DOT_DOT, + [54581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 1, + anon_sym_RPAREN, + [54588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 1, + ts_builtin_sym_end, + [54595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 1, + sym_identifier, + [54602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 1, + sym_identifier, + [54609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 1, + sym_identifier, + [54616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4593), 1, + sym_identifier, + [54623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 1, + anon_sym_EQ_GT, + [54630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4597), 1, + sym_identifier, + [54637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 1, + aux_sym_chunk_specification_token1, + [54644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3868), 1, + anon_sym_SEMI, + [54651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4601), 1, + sym_identifier, + [54658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_SEMI, + [54665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4605), 1, + aux_sym_global_mode_token1, + [54672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4607), 1, + anon_sym_LPAREN, + [54679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4609), 1, + sym_identifier, + [54686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4611), 1, + aux_sym_package_specification_token2, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(56)] = 0, + [SMALL_STATE(57)] = 139, + [SMALL_STATE(58)] = 278, + [SMALL_STATE(59)] = 417, + [SMALL_STATE(60)] = 556, + [SMALL_STATE(61)] = 695, + [SMALL_STATE(62)] = 834, + [SMALL_STATE(63)] = 973, + [SMALL_STATE(64)] = 1112, + [SMALL_STATE(65)] = 1251, + [SMALL_STATE(66)] = 1390, + [SMALL_STATE(67)] = 1529, + [SMALL_STATE(68)] = 1668, + [SMALL_STATE(69)] = 1807, + [SMALL_STATE(70)] = 1946, + [SMALL_STATE(71)] = 2080, + [SMALL_STATE(72)] = 2208, + [SMALL_STATE(73)] = 2365, + [SMALL_STATE(74)] = 2490, + [SMALL_STATE(75)] = 2613, + [SMALL_STATE(76)] = 2738, + [SMALL_STATE(77)] = 2863, + [SMALL_STATE(78)] = 2988, + [SMALL_STATE(79)] = 3110, + [SMALL_STATE(80)] = 3242, + [SMALL_STATE(81)] = 3364, + [SMALL_STATE(82)] = 3486, + [SMALL_STATE(83)] = 3608, + [SMALL_STATE(84)] = 3730, + [SMALL_STATE(85)] = 3852, + [SMALL_STATE(86)] = 3992, + [SMALL_STATE(87)] = 4129, + [SMALL_STATE(88)] = 4268, + [SMALL_STATE(89)] = 4407, + [SMALL_STATE(90)] = 4541, + [SMALL_STATE(91)] = 4669, + [SMALL_STATE(92)] = 4797, + [SMALL_STATE(93)] = 4928, + [SMALL_STATE(94)] = 5059, + [SMALL_STATE(95)] = 5185, + [SMALL_STATE(96)] = 5309, + [SMALL_STATE(97)] = 5437, + [SMALL_STATE(98)] = 5560, + [SMALL_STATE(99)] = 5681, + [SMALL_STATE(100)] = 5737, + [SMALL_STATE(101)] = 5793, + [SMALL_STATE(102)] = 5849, + [SMALL_STATE(103)] = 5905, + [SMALL_STATE(104)] = 5961, + [SMALL_STATE(105)] = 6017, + [SMALL_STATE(106)] = 6073, + [SMALL_STATE(107)] = 6129, + [SMALL_STATE(108)] = 6185, + [SMALL_STATE(109)] = 6241, + [SMALL_STATE(110)] = 6297, + [SMALL_STATE(111)] = 6353, + [SMALL_STATE(112)] = 6409, + [SMALL_STATE(113)] = 6465, + [SMALL_STATE(114)] = 6521, + [SMALL_STATE(115)] = 6577, + [SMALL_STATE(116)] = 6633, + [SMALL_STATE(117)] = 6689, + [SMALL_STATE(118)] = 6745, + [SMALL_STATE(119)] = 6801, + [SMALL_STATE(120)] = 6857, + [SMALL_STATE(121)] = 6913, + [SMALL_STATE(122)] = 6969, + [SMALL_STATE(123)] = 7025, + [SMALL_STATE(124)] = 7081, + [SMALL_STATE(125)] = 7137, + [SMALL_STATE(126)] = 7193, + [SMALL_STATE(127)] = 7249, + [SMALL_STATE(128)] = 7305, + [SMALL_STATE(129)] = 7361, + [SMALL_STATE(130)] = 7417, + [SMALL_STATE(131)] = 7473, + [SMALL_STATE(132)] = 7529, + [SMALL_STATE(133)] = 7585, + [SMALL_STATE(134)] = 7641, + [SMALL_STATE(135)] = 7697, + [SMALL_STATE(136)] = 7753, + [SMALL_STATE(137)] = 7809, + [SMALL_STATE(138)] = 7865, + [SMALL_STATE(139)] = 7921, + [SMALL_STATE(140)] = 7977, + [SMALL_STATE(141)] = 8033, + [SMALL_STATE(142)] = 8089, + [SMALL_STATE(143)] = 8145, + [SMALL_STATE(144)] = 8201, + [SMALL_STATE(145)] = 8257, + [SMALL_STATE(146)] = 8313, + [SMALL_STATE(147)] = 8369, + [SMALL_STATE(148)] = 8425, + [SMALL_STATE(149)] = 8481, + [SMALL_STATE(150)] = 8537, + [SMALL_STATE(151)] = 8593, + [SMALL_STATE(152)] = 8649, + [SMALL_STATE(153)] = 8705, + [SMALL_STATE(154)] = 8761, + [SMALL_STATE(155)] = 8817, + [SMALL_STATE(156)] = 8873, + [SMALL_STATE(157)] = 8929, + [SMALL_STATE(158)] = 8985, + [SMALL_STATE(159)] = 9041, + [SMALL_STATE(160)] = 9097, + [SMALL_STATE(161)] = 9153, + [SMALL_STATE(162)] = 9209, + [SMALL_STATE(163)] = 9265, + [SMALL_STATE(164)] = 9328, + [SMALL_STATE(165)] = 9442, + [SMALL_STATE(166)] = 9556, + [SMALL_STATE(167)] = 9612, + [SMALL_STATE(168)] = 9726, + [SMALL_STATE(169)] = 9779, + [SMALL_STATE(170)] = 9832, + [SMALL_STATE(171)] = 9885, + [SMALL_STATE(172)] = 9938, + [SMALL_STATE(173)] = 9991, + [SMALL_STATE(174)] = 10044, + [SMALL_STATE(175)] = 10097, + [SMALL_STATE(176)] = 10150, + [SMALL_STATE(177)] = 10203, + [SMALL_STATE(178)] = 10256, + [SMALL_STATE(179)] = 10309, + [SMALL_STATE(180)] = 10362, + [SMALL_STATE(181)] = 10415, + [SMALL_STATE(182)] = 10468, + [SMALL_STATE(183)] = 10521, + [SMALL_STATE(184)] = 10574, + [SMALL_STATE(185)] = 10627, + [SMALL_STATE(186)] = 10680, + [SMALL_STATE(187)] = 10733, + [SMALL_STATE(188)] = 10786, + [SMALL_STATE(189)] = 10839, + [SMALL_STATE(190)] = 10892, + [SMALL_STATE(191)] = 10945, + [SMALL_STATE(192)] = 10998, + [SMALL_STATE(193)] = 11109, + [SMALL_STATE(194)] = 11162, + [SMALL_STATE(195)] = 11215, + [SMALL_STATE(196)] = 11277, + [SMALL_STATE(197)] = 11389, + [SMALL_STATE(198)] = 11451, + [SMALL_STATE(199)] = 11558, + [SMALL_STATE(200)] = 11665, + [SMALL_STATE(201)] = 11716, + [SMALL_STATE(202)] = 11775, + [SMALL_STATE(203)] = 11826, + [SMALL_STATE(204)] = 11933, + [SMALL_STATE(205)] = 12040, + [SMALL_STATE(206)] = 12091, + [SMALL_STATE(207)] = 12142, + [SMALL_STATE(208)] = 12193, + [SMALL_STATE(209)] = 12244, + [SMALL_STATE(210)] = 12351, + [SMALL_STATE(211)] = 12402, + [SMALL_STATE(212)] = 12453, + [SMALL_STATE(213)] = 12560, + [SMALL_STATE(214)] = 12610, + [SMALL_STATE(215)] = 12660, + [SMALL_STATE(216)] = 12710, + [SMALL_STATE(217)] = 12760, + [SMALL_STATE(218)] = 12810, + [SMALL_STATE(219)] = 12860, + [SMALL_STATE(220)] = 12910, + [SMALL_STATE(221)] = 12960, + [SMALL_STATE(222)] = 13010, + [SMALL_STATE(223)] = 13060, + [SMALL_STATE(224)] = 13110, + [SMALL_STATE(225)] = 13212, + [SMALL_STATE(226)] = 13262, + [SMALL_STATE(227)] = 13312, + [SMALL_STATE(228)] = 13362, + [SMALL_STATE(229)] = 13412, + [SMALL_STATE(230)] = 13462, + [SMALL_STATE(231)] = 13512, + [SMALL_STATE(232)] = 13562, + [SMALL_STATE(233)] = 13612, + [SMALL_STATE(234)] = 13662, + [SMALL_STATE(235)] = 13712, + [SMALL_STATE(236)] = 13762, + [SMALL_STATE(237)] = 13812, + [SMALL_STATE(238)] = 13914, + [SMALL_STATE(239)] = 13964, + [SMALL_STATE(240)] = 14014, + [SMALL_STATE(241)] = 14064, + [SMALL_STATE(242)] = 14114, + [SMALL_STATE(243)] = 14164, + [SMALL_STATE(244)] = 14214, + [SMALL_STATE(245)] = 14264, + [SMALL_STATE(246)] = 14314, + [SMALL_STATE(247)] = 14364, + [SMALL_STATE(248)] = 14414, + [SMALL_STATE(249)] = 14464, + [SMALL_STATE(250)] = 14514, + [SMALL_STATE(251)] = 14564, + [SMALL_STATE(252)] = 14614, + [SMALL_STATE(253)] = 14664, + [SMALL_STATE(254)] = 14714, + [SMALL_STATE(255)] = 14764, + [SMALL_STATE(256)] = 14814, + [SMALL_STATE(257)] = 14864, + [SMALL_STATE(258)] = 14914, + [SMALL_STATE(259)] = 14964, + [SMALL_STATE(260)] = 15014, + [SMALL_STATE(261)] = 15064, + [SMALL_STATE(262)] = 15114, + [SMALL_STATE(263)] = 15164, + [SMALL_STATE(264)] = 15214, + [SMALL_STATE(265)] = 15264, + [SMALL_STATE(266)] = 15314, + [SMALL_STATE(267)] = 15364, + [SMALL_STATE(268)] = 15468, + [SMALL_STATE(269)] = 15518, + [SMALL_STATE(270)] = 15568, + [SMALL_STATE(271)] = 15618, + [SMALL_STATE(272)] = 15668, + [SMALL_STATE(273)] = 15718, + [SMALL_STATE(274)] = 15768, + [SMALL_STATE(275)] = 15818, + [SMALL_STATE(276)] = 15868, + [SMALL_STATE(277)] = 15918, + [SMALL_STATE(278)] = 15968, + [SMALL_STATE(279)] = 16018, + [SMALL_STATE(280)] = 16068, + [SMALL_STATE(281)] = 16118, + [SMALL_STATE(282)] = 16168, + [SMALL_STATE(283)] = 16218, + [SMALL_STATE(284)] = 16268, + [SMALL_STATE(285)] = 16318, + [SMALL_STATE(286)] = 16368, + [SMALL_STATE(287)] = 16418, + [SMALL_STATE(288)] = 16468, + [SMALL_STATE(289)] = 16518, + [SMALL_STATE(290)] = 16568, + [SMALL_STATE(291)] = 16618, + [SMALL_STATE(292)] = 16668, + [SMALL_STATE(293)] = 16718, + [SMALL_STATE(294)] = 16768, + [SMALL_STATE(295)] = 16818, + [SMALL_STATE(296)] = 16868, + [SMALL_STATE(297)] = 16918, + [SMALL_STATE(298)] = 16968, + [SMALL_STATE(299)] = 17018, + [SMALL_STATE(300)] = 17068, + [SMALL_STATE(301)] = 17118, + [SMALL_STATE(302)] = 17168, + [SMALL_STATE(303)] = 17218, + [SMALL_STATE(304)] = 17268, + [SMALL_STATE(305)] = 17318, + [SMALL_STATE(306)] = 17368, + [SMALL_STATE(307)] = 17418, + [SMALL_STATE(308)] = 17468, + [SMALL_STATE(309)] = 17518, + [SMALL_STATE(310)] = 17568, + [SMALL_STATE(311)] = 17618, + [SMALL_STATE(312)] = 17668, + [SMALL_STATE(313)] = 17718, + [SMALL_STATE(314)] = 17768, + [SMALL_STATE(315)] = 17818, + [SMALL_STATE(316)] = 17868, + [SMALL_STATE(317)] = 17918, + [SMALL_STATE(318)] = 17968, + [SMALL_STATE(319)] = 18072, + [SMALL_STATE(320)] = 18122, + [SMALL_STATE(321)] = 18226, + [SMALL_STATE(322)] = 18276, + [SMALL_STATE(323)] = 18326, + [SMALL_STATE(324)] = 18376, + [SMALL_STATE(325)] = 18426, + [SMALL_STATE(326)] = 18476, + [SMALL_STATE(327)] = 18526, + [SMALL_STATE(328)] = 18576, + [SMALL_STATE(329)] = 18626, + [SMALL_STATE(330)] = 18676, + [SMALL_STATE(331)] = 18726, + [SMALL_STATE(332)] = 18776, + [SMALL_STATE(333)] = 18826, + [SMALL_STATE(334)] = 18876, + [SMALL_STATE(335)] = 18926, + [SMALL_STATE(336)] = 18976, + [SMALL_STATE(337)] = 19026, + [SMALL_STATE(338)] = 19076, + [SMALL_STATE(339)] = 19126, + [SMALL_STATE(340)] = 19176, + [SMALL_STATE(341)] = 19226, + [SMALL_STATE(342)] = 19276, + [SMALL_STATE(343)] = 19326, + [SMALL_STATE(344)] = 19378, + [SMALL_STATE(345)] = 19428, + [SMALL_STATE(346)] = 19478, + [SMALL_STATE(347)] = 19528, + [SMALL_STATE(348)] = 19578, + [SMALL_STATE(349)] = 19628, + [SMALL_STATE(350)] = 19678, + [SMALL_STATE(351)] = 19728, + [SMALL_STATE(352)] = 19778, + [SMALL_STATE(353)] = 19828, + [SMALL_STATE(354)] = 19878, + [SMALL_STATE(355)] = 19928, + [SMALL_STATE(356)] = 19978, + [SMALL_STATE(357)] = 20028, + [SMALL_STATE(358)] = 20078, + [SMALL_STATE(359)] = 20128, + [SMALL_STATE(360)] = 20229, + [SMALL_STATE(361)] = 20330, + [SMALL_STATE(362)] = 20431, + [SMALL_STATE(363)] = 20532, + [SMALL_STATE(364)] = 20633, + [SMALL_STATE(365)] = 20734, + [SMALL_STATE(366)] = 20835, + [SMALL_STATE(367)] = 20884, + [SMALL_STATE(368)] = 20985, + [SMALL_STATE(369)] = 21034, + [SMALL_STATE(370)] = 21135, + [SMALL_STATE(371)] = 21184, + [SMALL_STATE(372)] = 21285, + [SMALL_STATE(373)] = 21334, + [SMALL_STATE(374)] = 21383, + [SMALL_STATE(375)] = 21432, + [SMALL_STATE(376)] = 21533, + [SMALL_STATE(377)] = 21634, + [SMALL_STATE(378)] = 21735, + [SMALL_STATE(379)] = 21784, + [SMALL_STATE(380)] = 21882, + [SMALL_STATE(381)] = 21980, + [SMALL_STATE(382)] = 22078, + [SMALL_STATE(383)] = 22176, + [SMALL_STATE(384)] = 22274, + [SMALL_STATE(385)] = 22372, + [SMALL_STATE(386)] = 22470, + [SMALL_STATE(387)] = 22568, + [SMALL_STATE(388)] = 22666, + [SMALL_STATE(389)] = 22764, + [SMALL_STATE(390)] = 22862, + [SMALL_STATE(391)] = 22960, + [SMALL_STATE(392)] = 23058, + [SMALL_STATE(393)] = 23156, + [SMALL_STATE(394)] = 23254, + [SMALL_STATE(395)] = 23352, + [SMALL_STATE(396)] = 23450, + [SMALL_STATE(397)] = 23548, + [SMALL_STATE(398)] = 23646, + [SMALL_STATE(399)] = 23744, + [SMALL_STATE(400)] = 23842, + [SMALL_STATE(401)] = 23940, + [SMALL_STATE(402)] = 24038, + [SMALL_STATE(403)] = 24136, + [SMALL_STATE(404)] = 24234, + [SMALL_STATE(405)] = 24332, + [SMALL_STATE(406)] = 24430, + [SMALL_STATE(407)] = 24528, + [SMALL_STATE(408)] = 24626, + [SMALL_STATE(409)] = 24724, + [SMALL_STATE(410)] = 24822, + [SMALL_STATE(411)] = 24920, + [SMALL_STATE(412)] = 25018, + [SMALL_STATE(413)] = 25116, + [SMALL_STATE(414)] = 25214, + [SMALL_STATE(415)] = 25312, + [SMALL_STATE(416)] = 25410, + [SMALL_STATE(417)] = 25508, + [SMALL_STATE(418)] = 25606, + [SMALL_STATE(419)] = 25704, + [SMALL_STATE(420)] = 25802, + [SMALL_STATE(421)] = 25900, + [SMALL_STATE(422)] = 25998, + [SMALL_STATE(423)] = 26096, + [SMALL_STATE(424)] = 26194, + [SMALL_STATE(425)] = 26292, + [SMALL_STATE(426)] = 26390, + [SMALL_STATE(427)] = 26485, + [SMALL_STATE(428)] = 26580, + [SMALL_STATE(429)] = 26627, + [SMALL_STATE(430)] = 26722, + [SMALL_STATE(431)] = 26817, + [SMALL_STATE(432)] = 26914, + [SMALL_STATE(433)] = 26961, + [SMALL_STATE(434)] = 27056, + [SMALL_STATE(435)] = 27151, + [SMALL_STATE(436)] = 27198, + [SMALL_STATE(437)] = 27245, + [SMALL_STATE(438)] = 27292, + [SMALL_STATE(439)] = 27339, + [SMALL_STATE(440)] = 27406, + [SMALL_STATE(441)] = 27453, + [SMALL_STATE(442)] = 27548, + [SMALL_STATE(443)] = 27643, + [SMALL_STATE(444)] = 27690, + [SMALL_STATE(445)] = 27785, + [SMALL_STATE(446)] = 27880, + [SMALL_STATE(447)] = 27926, + [SMALL_STATE(448)] = 28018, + [SMALL_STATE(449)] = 28064, + [SMALL_STATE(450)] = 28118, + [SMALL_STATE(451)] = 28210, + [SMALL_STATE(452)] = 28264, + [SMALL_STATE(453)] = 28318, + [SMALL_STATE(454)] = 28410, + [SMALL_STATE(455)] = 28502, + [SMALL_STATE(456)] = 28548, + [SMALL_STATE(457)] = 28637, + [SMALL_STATE(458)] = 28684, + [SMALL_STATE(459)] = 28773, + [SMALL_STATE(460)] = 28859, + [SMALL_STATE(461)] = 28905, + [SMALL_STATE(462)] = 28993, + [SMALL_STATE(463)] = 29079, + [SMALL_STATE(464)] = 29165, + [SMALL_STATE(465)] = 29251, + [SMALL_STATE(466)] = 29337, + [SMALL_STATE(467)] = 29423, + [SMALL_STATE(468)] = 29509, + [SMALL_STATE(469)] = 29595, + [SMALL_STATE(470)] = 29681, + [SMALL_STATE(471)] = 29767, + [SMALL_STATE(472)] = 29853, + [SMALL_STATE(473)] = 29941, + [SMALL_STATE(474)] = 30027, + [SMALL_STATE(475)] = 30113, + [SMALL_STATE(476)] = 30199, + [SMALL_STATE(477)] = 30250, + [SMALL_STATE(478)] = 30301, + [SMALL_STATE(479)] = 30352, + [SMALL_STATE(480)] = 30396, + [SMALL_STATE(481)] = 30446, + [SMALL_STATE(482)] = 30496, + [SMALL_STATE(483)] = 30538, + [SMALL_STATE(484)] = 30588, + [SMALL_STATE(485)] = 30638, + [SMALL_STATE(486)] = 30688, + [SMALL_STATE(487)] = 30737, + [SMALL_STATE(488)] = 30782, + [SMALL_STATE(489)] = 30856, + [SMALL_STATE(490)] = 30930, + [SMALL_STATE(491)] = 31004, + [SMALL_STATE(492)] = 31052, + [SMALL_STATE(493)] = 31126, + [SMALL_STATE(494)] = 31173, + [SMALL_STATE(495)] = 31220, + [SMALL_STATE(496)] = 31291, + [SMALL_STATE(497)] = 31338, + [SMALL_STATE(498)] = 31385, + [SMALL_STATE(499)] = 31456, + [SMALL_STATE(500)] = 31503, + [SMALL_STATE(501)] = 31550, + [SMALL_STATE(502)] = 31589, + [SMALL_STATE(503)] = 31631, + [SMALL_STATE(504)] = 31677, + [SMALL_STATE(505)] = 31728, + [SMALL_STATE(506)] = 31792, + [SMALL_STATE(507)] = 31846, + [SMALL_STATE(508)] = 31910, + [SMALL_STATE(509)] = 31974, + [SMALL_STATE(510)] = 32040, + [SMALL_STATE(511)] = 32104, + [SMALL_STATE(512)] = 32147, + [SMALL_STATE(513)] = 32208, + [SMALL_STATE(514)] = 32269, + [SMALL_STATE(515)] = 32311, + [SMALL_STATE(516)] = 32375, + [SMALL_STATE(517)] = 32439, + [SMALL_STATE(518)] = 32503, + [SMALL_STATE(519)] = 32567, + [SMALL_STATE(520)] = 32603, + [SMALL_STATE(521)] = 32667, + [SMALL_STATE(522)] = 32730, + [SMALL_STATE(523)] = 32793, + [SMALL_STATE(524)] = 32856, + [SMALL_STATE(525)] = 32897, + [SMALL_STATE(526)] = 32960, + [SMALL_STATE(527)] = 33023, + [SMALL_STATE(528)] = 33083, + [SMALL_STATE(529)] = 33137, + [SMALL_STATE(530)] = 33191, + [SMALL_STATE(531)] = 33223, + [SMALL_STATE(532)] = 33283, + [SMALL_STATE(533)] = 33343, + [SMALL_STATE(534)] = 33379, + [SMALL_STATE(535)] = 33439, + [SMALL_STATE(536)] = 33499, + [SMALL_STATE(537)] = 33557, + [SMALL_STATE(538)] = 33612, + [SMALL_STATE(539)] = 33667, + [SMALL_STATE(540)] = 33722, + [SMALL_STATE(541)] = 33751, + [SMALL_STATE(542)] = 33780, + [SMALL_STATE(543)] = 33837, + [SMALL_STATE(544)] = 33892, + [SMALL_STATE(545)] = 33951, + [SMALL_STATE(546)] = 33980, + [SMALL_STATE(547)] = 34035, + [SMALL_STATE(548)] = 34090, + [SMALL_STATE(549)] = 34146, + [SMALL_STATE(550)] = 34184, + [SMALL_STATE(551)] = 34231, + [SMALL_STATE(552)] = 34278, + [SMALL_STATE(553)] = 34325, + [SMALL_STATE(554)] = 34376, + [SMALL_STATE(555)] = 34415, + [SMALL_STATE(556)] = 34462, + [SMALL_STATE(557)] = 34519, + [SMALL_STATE(558)] = 34576, + [SMALL_STATE(559)] = 34633, + [SMALL_STATE(560)] = 34686, + [SMALL_STATE(561)] = 34712, + [SMALL_STATE(562)] = 34742, + [SMALL_STATE(563)] = 34768, + [SMALL_STATE(564)] = 34818, + [SMALL_STATE(565)] = 34844, + [SMALL_STATE(566)] = 34870, + [SMALL_STATE(567)] = 34896, + [SMALL_STATE(568)] = 34942, + [SMALL_STATE(569)] = 34992, + [SMALL_STATE(570)] = 35018, + [SMALL_STATE(571)] = 35055, + [SMALL_STATE(572)] = 35084, + [SMALL_STATE(573)] = 35111, + [SMALL_STATE(574)] = 35140, + [SMALL_STATE(575)] = 35191, + [SMALL_STATE(576)] = 35220, + [SMALL_STATE(577)] = 35268, + [SMALL_STATE(578)] = 35292, + [SMALL_STATE(579)] = 35316, + [SMALL_STATE(580)] = 35366, + [SMALL_STATE(581)] = 35390, + [SMALL_STATE(582)] = 35438, + [SMALL_STATE(583)] = 35478, + [SMALL_STATE(584)] = 35526, + [SMALL_STATE(585)] = 35574, + [SMALL_STATE(586)] = 35614, + [SMALL_STATE(587)] = 35638, + [SMALL_STATE(588)] = 35662, + [SMALL_STATE(589)] = 35689, + [SMALL_STATE(590)] = 35716, + [SMALL_STATE(591)] = 35761, + [SMALL_STATE(592)] = 35806, + [SMALL_STATE(593)] = 35833, + [SMALL_STATE(594)] = 35880, + [SMALL_STATE(595)] = 35907, + [SMALL_STATE(596)] = 35934, + [SMALL_STATE(597)] = 35961, + [SMALL_STATE(598)] = 35988, + [SMALL_STATE(599)] = 36015, + [SMALL_STATE(600)] = 36060, + [SMALL_STATE(601)] = 36105, + [SMALL_STATE(602)] = 36149, + [SMALL_STATE(603)] = 36191, + [SMALL_STATE(604)] = 36235, + [SMALL_STATE(605)] = 36277, + [SMALL_STATE(606)] = 36321, + [SMALL_STATE(607)] = 36345, + [SMALL_STATE(608)] = 36377, + [SMALL_STATE(609)] = 36421, + [SMALL_STATE(610)] = 36442, + [SMALL_STATE(611)] = 36483, + [SMALL_STATE(612)] = 36504, + [SMALL_STATE(613)] = 36525, + [SMALL_STATE(614)] = 36546, + [SMALL_STATE(615)] = 36567, + [SMALL_STATE(616)] = 36606, + [SMALL_STATE(617)] = 36647, + [SMALL_STATE(618)] = 36686, + [SMALL_STATE(619)] = 36727, + [SMALL_STATE(620)] = 36766, + [SMALL_STATE(621)] = 36787, + [SMALL_STATE(622)] = 36826, + [SMALL_STATE(623)] = 36865, + [SMALL_STATE(624)] = 36906, + [SMALL_STATE(625)] = 36947, + [SMALL_STATE(626)] = 36984, + [SMALL_STATE(627)] = 37005, + [SMALL_STATE(628)] = 37046, + [SMALL_STATE(629)] = 37085, + [SMALL_STATE(630)] = 37126, + [SMALL_STATE(631)] = 37167, + [SMALL_STATE(632)] = 37206, + [SMALL_STATE(633)] = 37247, + [SMALL_STATE(634)] = 37275, + [SMALL_STATE(635)] = 37313, + [SMALL_STATE(636)] = 37341, + [SMALL_STATE(637)] = 37377, + [SMALL_STATE(638)] = 37413, + [SMALL_STATE(639)] = 37449, + [SMALL_STATE(640)] = 37485, + [SMALL_STATE(641)] = 37523, + [SMALL_STATE(642)] = 37551, + [SMALL_STATE(643)] = 37589, + [SMALL_STATE(644)] = 37625, + [SMALL_STATE(645)] = 37663, + [SMALL_STATE(646)] = 37699, + [SMALL_STATE(647)] = 37735, + [SMALL_STATE(648)] = 37771, + [SMALL_STATE(649)] = 37807, + [SMALL_STATE(650)] = 37843, + [SMALL_STATE(651)] = 37881, + [SMALL_STATE(652)] = 37919, + [SMALL_STATE(653)] = 37957, + [SMALL_STATE(654)] = 37995, + [SMALL_STATE(655)] = 38033, + [SMALL_STATE(656)] = 38071, + [SMALL_STATE(657)] = 38107, + [SMALL_STATE(658)] = 38145, + [SMALL_STATE(659)] = 38183, + [SMALL_STATE(660)] = 38211, + [SMALL_STATE(661)] = 38249, + [SMALL_STATE(662)] = 38287, + [SMALL_STATE(663)] = 38315, + [SMALL_STATE(664)] = 38350, + [SMALL_STATE(665)] = 38375, + [SMALL_STATE(666)] = 38400, + [SMALL_STATE(667)] = 38433, + [SMALL_STATE(668)] = 38458, + [SMALL_STATE(669)] = 38489, + [SMALL_STATE(670)] = 38510, + [SMALL_STATE(671)] = 38539, + [SMALL_STATE(672)] = 38574, + [SMALL_STATE(673)] = 38599, + [SMALL_STATE(674)] = 38630, + [SMALL_STATE(675)] = 38659, + [SMALL_STATE(676)] = 38694, + [SMALL_STATE(677)] = 38729, + [SMALL_STATE(678)] = 38762, + [SMALL_STATE(679)] = 38794, + [SMALL_STATE(680)] = 38826, + [SMALL_STATE(681)] = 38858, + [SMALL_STATE(682)] = 38890, + [SMALL_STATE(683)] = 38922, + [SMALL_STATE(684)] = 38954, + [SMALL_STATE(685)] = 38986, + [SMALL_STATE(686)] = 39018, + [SMALL_STATE(687)] = 39050, + [SMALL_STATE(688)] = 39082, + [SMALL_STATE(689)] = 39114, + [SMALL_STATE(690)] = 39146, + [SMALL_STATE(691)] = 39180, + [SMALL_STATE(692)] = 39212, + [SMALL_STATE(693)] = 39246, + [SMALL_STATE(694)] = 39278, + [SMALL_STATE(695)] = 39310, + [SMALL_STATE(696)] = 39342, + [SMALL_STATE(697)] = 39374, + [SMALL_STATE(698)] = 39406, + [SMALL_STATE(699)] = 39438, + [SMALL_STATE(700)] = 39470, + [SMALL_STATE(701)] = 39502, + [SMALL_STATE(702)] = 39534, + [SMALL_STATE(703)] = 39566, + [SMALL_STATE(704)] = 39598, + [SMALL_STATE(705)] = 39630, + [SMALL_STATE(706)] = 39662, + [SMALL_STATE(707)] = 39696, + [SMALL_STATE(708)] = 39728, + [SMALL_STATE(709)] = 39750, + [SMALL_STATE(710)] = 39782, + [SMALL_STATE(711)] = 39814, + [SMALL_STATE(712)] = 39846, + [SMALL_STATE(713)] = 39878, + [SMALL_STATE(714)] = 39910, + [SMALL_STATE(715)] = 39942, + [SMALL_STATE(716)] = 39974, + [SMALL_STATE(717)] = 40006, + [SMALL_STATE(718)] = 40038, + [SMALL_STATE(719)] = 40070, + [SMALL_STATE(720)] = 40102, + [SMALL_STATE(721)] = 40134, + [SMALL_STATE(722)] = 40166, + [SMALL_STATE(723)] = 40198, + [SMALL_STATE(724)] = 40230, + [SMALL_STATE(725)] = 40262, + [SMALL_STATE(726)] = 40294, + [SMALL_STATE(727)] = 40326, + [SMALL_STATE(728)] = 40358, + [SMALL_STATE(729)] = 40390, + [SMALL_STATE(730)] = 40422, + [SMALL_STATE(731)] = 40454, + [SMALL_STATE(732)] = 40486, + [SMALL_STATE(733)] = 40518, + [SMALL_STATE(734)] = 40550, + [SMALL_STATE(735)] = 40568, + [SMALL_STATE(736)] = 40600, + [SMALL_STATE(737)] = 40634, + [SMALL_STATE(738)] = 40666, + [SMALL_STATE(739)] = 40698, + [SMALL_STATE(740)] = 40730, + [SMALL_STATE(741)] = 40762, + [SMALL_STATE(742)] = 40791, + [SMALL_STATE(743)] = 40820, + [SMALL_STATE(744)] = 40849, + [SMALL_STATE(745)] = 40878, + [SMALL_STATE(746)] = 40907, + [SMALL_STATE(747)] = 40936, + [SMALL_STATE(748)] = 40965, + [SMALL_STATE(749)] = 40996, + [SMALL_STATE(750)] = 41025, + [SMALL_STATE(751)] = 41054, + [SMALL_STATE(752)] = 41083, + [SMALL_STATE(753)] = 41112, + [SMALL_STATE(754)] = 41141, + [SMALL_STATE(755)] = 41160, + [SMALL_STATE(756)] = 41179, + [SMALL_STATE(757)] = 41208, + [SMALL_STATE(758)] = 41227, + [SMALL_STATE(759)] = 41258, + [SMALL_STATE(760)] = 41287, + [SMALL_STATE(761)] = 41314, + [SMALL_STATE(762)] = 41343, + [SMALL_STATE(763)] = 41372, + [SMALL_STATE(764)] = 41401, + [SMALL_STATE(765)] = 41430, + [SMALL_STATE(766)] = 41459, + [SMALL_STATE(767)] = 41478, + [SMALL_STATE(768)] = 41507, + [SMALL_STATE(769)] = 41536, + [SMALL_STATE(770)] = 41565, + [SMALL_STATE(771)] = 41594, + [SMALL_STATE(772)] = 41625, + [SMALL_STATE(773)] = 41654, + [SMALL_STATE(774)] = 41683, + [SMALL_STATE(775)] = 41712, + [SMALL_STATE(776)] = 41741, + [SMALL_STATE(777)] = 41760, + [SMALL_STATE(778)] = 41789, + [SMALL_STATE(779)] = 41818, + [SMALL_STATE(780)] = 41847, + [SMALL_STATE(781)] = 41876, + [SMALL_STATE(782)] = 41905, + [SMALL_STATE(783)] = 41924, + [SMALL_STATE(784)] = 41953, + [SMALL_STATE(785)] = 41982, + [SMALL_STATE(786)] = 42011, + [SMALL_STATE(787)] = 42040, + [SMALL_STATE(788)] = 42069, + [SMALL_STATE(789)] = 42098, + [SMALL_STATE(790)] = 42127, + [SMALL_STATE(791)] = 42156, + [SMALL_STATE(792)] = 42185, + [SMALL_STATE(793)] = 42204, + [SMALL_STATE(794)] = 42233, + [SMALL_STATE(795)] = 42262, + [SMALL_STATE(796)] = 42291, + [SMALL_STATE(797)] = 42320, + [SMALL_STATE(798)] = 42349, + [SMALL_STATE(799)] = 42368, + [SMALL_STATE(800)] = 42397, + [SMALL_STATE(801)] = 42426, + [SMALL_STATE(802)] = 42455, + [SMALL_STATE(803)] = 42484, + [SMALL_STATE(804)] = 42513, + [SMALL_STATE(805)] = 42543, + [SMALL_STATE(806)] = 42559, + [SMALL_STATE(807)] = 42575, + [SMALL_STATE(808)] = 42591, + [SMALL_STATE(809)] = 42607, + [SMALL_STATE(810)] = 42623, + [SMALL_STATE(811)] = 42639, + [SMALL_STATE(812)] = 42655, + [SMALL_STATE(813)] = 42685, + [SMALL_STATE(814)] = 42703, + [SMALL_STATE(815)] = 42731, + [SMALL_STATE(816)] = 42754, + [SMALL_STATE(817)] = 42781, + [SMALL_STATE(818)] = 42798, + [SMALL_STATE(819)] = 42825, + [SMALL_STATE(820)] = 42852, + [SMALL_STATE(821)] = 42869, + [SMALL_STATE(822)] = 42896, + [SMALL_STATE(823)] = 42915, + [SMALL_STATE(824)] = 42934, + [SMALL_STATE(825)] = 42953, + [SMALL_STATE(826)] = 42970, + [SMALL_STATE(827)] = 43001, + [SMALL_STATE(828)] = 43032, + [SMALL_STATE(829)] = 43063, + [SMALL_STATE(830)] = 43094, + [SMALL_STATE(831)] = 43121, + [SMALL_STATE(832)] = 43148, + [SMALL_STATE(833)] = 43179, + [SMALL_STATE(834)] = 43206, + [SMALL_STATE(835)] = 43237, + [SMALL_STATE(836)] = 43253, + [SMALL_STATE(837)] = 43269, + [SMALL_STATE(838)] = 43285, + [SMALL_STATE(839)] = 43301, + [SMALL_STATE(840)] = 43317, + [SMALL_STATE(841)] = 43333, + [SMALL_STATE(842)] = 43349, + [SMALL_STATE(843)] = 43371, + [SMALL_STATE(844)] = 43397, + [SMALL_STATE(845)] = 43413, + [SMALL_STATE(846)] = 43429, + [SMALL_STATE(847)] = 43445, + [SMALL_STATE(848)] = 43473, + [SMALL_STATE(849)] = 43499, + [SMALL_STATE(850)] = 43525, + [SMALL_STATE(851)] = 43541, + [SMALL_STATE(852)] = 43557, + [SMALL_STATE(853)] = 43585, + [SMALL_STATE(854)] = 43611, + [SMALL_STATE(855)] = 43627, + [SMALL_STATE(856)] = 43643, + [SMALL_STATE(857)] = 43669, + [SMALL_STATE(858)] = 43693, + [SMALL_STATE(859)] = 43709, + [SMALL_STATE(860)] = 43725, + [SMALL_STATE(861)] = 43741, + [SMALL_STATE(862)] = 43757, + [SMALL_STATE(863)] = 43773, + [SMALL_STATE(864)] = 43799, + [SMALL_STATE(865)] = 43815, + [SMALL_STATE(866)] = 43831, + [SMALL_STATE(867)] = 43847, + [SMALL_STATE(868)] = 43863, + [SMALL_STATE(869)] = 43889, + [SMALL_STATE(870)] = 43905, + [SMALL_STATE(871)] = 43921, + [SMALL_STATE(872)] = 43937, + [SMALL_STATE(873)] = 43953, + [SMALL_STATE(874)] = 43979, + [SMALL_STATE(875)] = 43995, + [SMALL_STATE(876)] = 44011, + [SMALL_STATE(877)] = 44037, + [SMALL_STATE(878)] = 44053, + [SMALL_STATE(879)] = 44069, + [SMALL_STATE(880)] = 44090, + [SMALL_STATE(881)] = 44113, + [SMALL_STATE(882)] = 44138, + [SMALL_STATE(883)] = 44163, + [SMALL_STATE(884)] = 44188, + [SMALL_STATE(885)] = 44205, + [SMALL_STATE(886)] = 44230, + [SMALL_STATE(887)] = 44243, + [SMALL_STATE(888)] = 44268, + [SMALL_STATE(889)] = 44293, + [SMALL_STATE(890)] = 44318, + [SMALL_STATE(891)] = 44343, + [SMALL_STATE(892)] = 44368, + [SMALL_STATE(893)] = 44393, + [SMALL_STATE(894)] = 44406, + [SMALL_STATE(895)] = 44419, + [SMALL_STATE(896)] = 44444, + [SMALL_STATE(897)] = 44467, + [SMALL_STATE(898)] = 44490, + [SMALL_STATE(899)] = 44515, + [SMALL_STATE(900)] = 44528, + [SMALL_STATE(901)] = 44553, + [SMALL_STATE(902)] = 44578, + [SMALL_STATE(903)] = 44603, + [SMALL_STATE(904)] = 44626, + [SMALL_STATE(905)] = 44651, + [SMALL_STATE(906)] = 44676, + [SMALL_STATE(907)] = 44701, + [SMALL_STATE(908)] = 44714, + [SMALL_STATE(909)] = 44739, + [SMALL_STATE(910)] = 44752, + [SMALL_STATE(911)] = 44766, + [SMALL_STATE(912)] = 44786, + [SMALL_STATE(913)] = 44798, + [SMALL_STATE(914)] = 44816, + [SMALL_STATE(915)] = 44838, + [SMALL_STATE(916)] = 44858, + [SMALL_STATE(917)] = 44878, + [SMALL_STATE(918)] = 44900, + [SMALL_STATE(919)] = 44922, + [SMALL_STATE(920)] = 44944, + [SMALL_STATE(921)] = 44966, + [SMALL_STATE(922)] = 44980, + [SMALL_STATE(923)] = 45000, + [SMALL_STATE(924)] = 45018, + [SMALL_STATE(925)] = 45034, + [SMALL_STATE(926)] = 45050, + [SMALL_STATE(927)] = 45070, + [SMALL_STATE(928)] = 45088, + [SMALL_STATE(929)] = 45104, + [SMALL_STATE(930)] = 45120, + [SMALL_STATE(931)] = 45134, + [SMALL_STATE(932)] = 45152, + [SMALL_STATE(933)] = 45170, + [SMALL_STATE(934)] = 45186, + [SMALL_STATE(935)] = 45198, + [SMALL_STATE(936)] = 45218, + [SMALL_STATE(937)] = 45238, + [SMALL_STATE(938)] = 45254, + [SMALL_STATE(939)] = 45276, + [SMALL_STATE(940)] = 45290, + [SMALL_STATE(941)] = 45306, + [SMALL_STATE(942)] = 45328, + [SMALL_STATE(943)] = 45350, + [SMALL_STATE(944)] = 45372, + [SMALL_STATE(945)] = 45394, + [SMALL_STATE(946)] = 45408, + [SMALL_STATE(947)] = 45424, + [SMALL_STATE(948)] = 45446, + [SMALL_STATE(949)] = 45465, + [SMALL_STATE(950)] = 45484, + [SMALL_STATE(951)] = 45503, + [SMALL_STATE(952)] = 45518, + [SMALL_STATE(953)] = 45537, + [SMALL_STATE(954)] = 45556, + [SMALL_STATE(955)] = 45575, + [SMALL_STATE(956)] = 45594, + [SMALL_STATE(957)] = 45613, + [SMALL_STATE(958)] = 45630, + [SMALL_STATE(959)] = 45649, + [SMALL_STATE(960)] = 45668, + [SMALL_STATE(961)] = 45687, + [SMALL_STATE(962)] = 45706, + [SMALL_STATE(963)] = 45725, + [SMALL_STATE(964)] = 45744, + [SMALL_STATE(965)] = 45763, + [SMALL_STATE(966)] = 45782, + [SMALL_STATE(967)] = 45801, + [SMALL_STATE(968)] = 45820, + [SMALL_STATE(969)] = 45839, + [SMALL_STATE(970)] = 45858, + [SMALL_STATE(971)] = 45873, + [SMALL_STATE(972)] = 45884, + [SMALL_STATE(973)] = 45903, + [SMALL_STATE(974)] = 45922, + [SMALL_STATE(975)] = 45941, + [SMALL_STATE(976)] = 45960, + [SMALL_STATE(977)] = 45979, + [SMALL_STATE(978)] = 45990, + [SMALL_STATE(979)] = 46003, + [SMALL_STATE(980)] = 46014, + [SMALL_STATE(981)] = 46027, + [SMALL_STATE(982)] = 46046, + [SMALL_STATE(983)] = 46065, + [SMALL_STATE(984)] = 46082, + [SMALL_STATE(985)] = 46101, + [SMALL_STATE(986)] = 46120, + [SMALL_STATE(987)] = 46139, + [SMALL_STATE(988)] = 46154, + [SMALL_STATE(989)] = 46173, + [SMALL_STATE(990)] = 46192, + [SMALL_STATE(991)] = 46211, + [SMALL_STATE(992)] = 46228, + [SMALL_STATE(993)] = 46247, + [SMALL_STATE(994)] = 46266, + [SMALL_STATE(995)] = 46281, + [SMALL_STATE(996)] = 46300, + [SMALL_STATE(997)] = 46317, + [SMALL_STATE(998)] = 46332, + [SMALL_STATE(999)] = 46347, + [SMALL_STATE(1000)] = 46364, + [SMALL_STATE(1001)] = 46379, + [SMALL_STATE(1002)] = 46398, + [SMALL_STATE(1003)] = 46417, + [SMALL_STATE(1004)] = 46436, + [SMALL_STATE(1005)] = 46455, + [SMALL_STATE(1006)] = 46474, + [SMALL_STATE(1007)] = 46493, + [SMALL_STATE(1008)] = 46508, + [SMALL_STATE(1009)] = 46519, + [SMALL_STATE(1010)] = 46538, + [SMALL_STATE(1011)] = 46553, + [SMALL_STATE(1012)] = 46572, + [SMALL_STATE(1013)] = 46591, + [SMALL_STATE(1014)] = 46610, + [SMALL_STATE(1015)] = 46629, + [SMALL_STATE(1016)] = 46648, + [SMALL_STATE(1017)] = 46667, + [SMALL_STATE(1018)] = 46686, + [SMALL_STATE(1019)] = 46703, + [SMALL_STATE(1020)] = 46722, + [SMALL_STATE(1021)] = 46741, + [SMALL_STATE(1022)] = 46760, + [SMALL_STATE(1023)] = 46775, + [SMALL_STATE(1024)] = 46786, + [SMALL_STATE(1025)] = 46803, + [SMALL_STATE(1026)] = 46822, + [SMALL_STATE(1027)] = 46841, + [SMALL_STATE(1028)] = 46860, + [SMALL_STATE(1029)] = 46879, + [SMALL_STATE(1030)] = 46898, + [SMALL_STATE(1031)] = 46913, + [SMALL_STATE(1032)] = 46923, + [SMALL_STATE(1033)] = 46939, + [SMALL_STATE(1034)] = 46955, + [SMALL_STATE(1035)] = 46969, + [SMALL_STATE(1036)] = 46979, + [SMALL_STATE(1037)] = 46995, + [SMALL_STATE(1038)] = 47009, + [SMALL_STATE(1039)] = 47025, + [SMALL_STATE(1040)] = 47039, + [SMALL_STATE(1041)] = 47049, + [SMALL_STATE(1042)] = 47063, + [SMALL_STATE(1043)] = 47077, + [SMALL_STATE(1044)] = 47087, + [SMALL_STATE(1045)] = 47101, + [SMALL_STATE(1046)] = 47117, + [SMALL_STATE(1047)] = 47133, + [SMALL_STATE(1048)] = 47147, + [SMALL_STATE(1049)] = 47159, + [SMALL_STATE(1050)] = 47175, + [SMALL_STATE(1051)] = 47191, + [SMALL_STATE(1052)] = 47207, + [SMALL_STATE(1053)] = 47223, + [SMALL_STATE(1054)] = 47237, + [SMALL_STATE(1055)] = 47253, + [SMALL_STATE(1056)] = 47269, + [SMALL_STATE(1057)] = 47281, + [SMALL_STATE(1058)] = 47291, + [SMALL_STATE(1059)] = 47307, + [SMALL_STATE(1060)] = 47321, + [SMALL_STATE(1061)] = 47337, + [SMALL_STATE(1062)] = 47349, + [SMALL_STATE(1063)] = 47365, + [SMALL_STATE(1064)] = 47375, + [SMALL_STATE(1065)] = 47389, + [SMALL_STATE(1066)] = 47405, + [SMALL_STATE(1067)] = 47421, + [SMALL_STATE(1068)] = 47435, + [SMALL_STATE(1069)] = 47451, + [SMALL_STATE(1070)] = 47461, + [SMALL_STATE(1071)] = 47471, + [SMALL_STATE(1072)] = 47481, + [SMALL_STATE(1073)] = 47495, + [SMALL_STATE(1074)] = 47505, + [SMALL_STATE(1075)] = 47519, + [SMALL_STATE(1076)] = 47529, + [SMALL_STATE(1077)] = 47545, + [SMALL_STATE(1078)] = 47559, + [SMALL_STATE(1079)] = 47571, + [SMALL_STATE(1080)] = 47585, + [SMALL_STATE(1081)] = 47601, + [SMALL_STATE(1082)] = 47611, + [SMALL_STATE(1083)] = 47627, + [SMALL_STATE(1084)] = 47641, + [SMALL_STATE(1085)] = 47657, + [SMALL_STATE(1086)] = 47673, + [SMALL_STATE(1087)] = 47683, + [SMALL_STATE(1088)] = 47699, + [SMALL_STATE(1089)] = 47709, + [SMALL_STATE(1090)] = 47725, + [SMALL_STATE(1091)] = 47741, + [SMALL_STATE(1092)] = 47755, + [SMALL_STATE(1093)] = 47771, + [SMALL_STATE(1094)] = 47783, + [SMALL_STATE(1095)] = 47797, + [SMALL_STATE(1096)] = 47813, + [SMALL_STATE(1097)] = 47829, + [SMALL_STATE(1098)] = 47841, + [SMALL_STATE(1099)] = 47857, + [SMALL_STATE(1100)] = 47873, + [SMALL_STATE(1101)] = 47887, + [SMALL_STATE(1102)] = 47903, + [SMALL_STATE(1103)] = 47919, + [SMALL_STATE(1104)] = 47935, + [SMALL_STATE(1105)] = 47949, + [SMALL_STATE(1106)] = 47965, + [SMALL_STATE(1107)] = 47979, + [SMALL_STATE(1108)] = 47991, + [SMALL_STATE(1109)] = 48005, + [SMALL_STATE(1110)] = 48017, + [SMALL_STATE(1111)] = 48027, + [SMALL_STATE(1112)] = 48043, + [SMALL_STATE(1113)] = 48055, + [SMALL_STATE(1114)] = 48071, + [SMALL_STATE(1115)] = 48087, + [SMALL_STATE(1116)] = 48101, + [SMALL_STATE(1117)] = 48115, + [SMALL_STATE(1118)] = 48128, + [SMALL_STATE(1119)] = 48141, + [SMALL_STATE(1120)] = 48154, + [SMALL_STATE(1121)] = 48167, + [SMALL_STATE(1122)] = 48176, + [SMALL_STATE(1123)] = 48189, + [SMALL_STATE(1124)] = 48202, + [SMALL_STATE(1125)] = 48213, + [SMALL_STATE(1126)] = 48226, + [SMALL_STATE(1127)] = 48235, + [SMALL_STATE(1128)] = 48244, + [SMALL_STATE(1129)] = 48253, + [SMALL_STATE(1130)] = 48266, + [SMALL_STATE(1131)] = 48279, + [SMALL_STATE(1132)] = 48292, + [SMALL_STATE(1133)] = 48305, + [SMALL_STATE(1134)] = 48318, + [SMALL_STATE(1135)] = 48327, + [SMALL_STATE(1136)] = 48340, + [SMALL_STATE(1137)] = 48353, + [SMALL_STATE(1138)] = 48366, + [SMALL_STATE(1139)] = 48379, + [SMALL_STATE(1140)] = 48392, + [SMALL_STATE(1141)] = 48401, + [SMALL_STATE(1142)] = 48414, + [SMALL_STATE(1143)] = 48423, + [SMALL_STATE(1144)] = 48436, + [SMALL_STATE(1145)] = 48449, + [SMALL_STATE(1146)] = 48462, + [SMALL_STATE(1147)] = 48471, + [SMALL_STATE(1148)] = 48484, + [SMALL_STATE(1149)] = 48497, + [SMALL_STATE(1150)] = 48506, + [SMALL_STATE(1151)] = 48519, + [SMALL_STATE(1152)] = 48532, + [SMALL_STATE(1153)] = 48545, + [SMALL_STATE(1154)] = 48558, + [SMALL_STATE(1155)] = 48567, + [SMALL_STATE(1156)] = 48576, + [SMALL_STATE(1157)] = 48589, + [SMALL_STATE(1158)] = 48602, + [SMALL_STATE(1159)] = 48615, + [SMALL_STATE(1160)] = 48624, + [SMALL_STATE(1161)] = 48637, + [SMALL_STATE(1162)] = 48648, + [SMALL_STATE(1163)] = 48661, + [SMALL_STATE(1164)] = 48674, + [SMALL_STATE(1165)] = 48685, + [SMALL_STATE(1166)] = 48698, + [SMALL_STATE(1167)] = 48711, + [SMALL_STATE(1168)] = 48724, + [SMALL_STATE(1169)] = 48737, + [SMALL_STATE(1170)] = 48746, + [SMALL_STATE(1171)] = 48757, + [SMALL_STATE(1172)] = 48770, + [SMALL_STATE(1173)] = 48783, + [SMALL_STATE(1174)] = 48796, + [SMALL_STATE(1175)] = 48805, + [SMALL_STATE(1176)] = 48818, + [SMALL_STATE(1177)] = 48827, + [SMALL_STATE(1178)] = 48836, + [SMALL_STATE(1179)] = 48845, + [SMALL_STATE(1180)] = 48854, + [SMALL_STATE(1181)] = 48863, + [SMALL_STATE(1182)] = 48876, + [SMALL_STATE(1183)] = 48885, + [SMALL_STATE(1184)] = 48896, + [SMALL_STATE(1185)] = 48909, + [SMALL_STATE(1186)] = 48918, + [SMALL_STATE(1187)] = 48927, + [SMALL_STATE(1188)] = 48940, + [SMALL_STATE(1189)] = 48953, + [SMALL_STATE(1190)] = 48962, + [SMALL_STATE(1191)] = 48973, + [SMALL_STATE(1192)] = 48986, + [SMALL_STATE(1193)] = 48999, + [SMALL_STATE(1194)] = 49008, + [SMALL_STATE(1195)] = 49021, + [SMALL_STATE(1196)] = 49034, + [SMALL_STATE(1197)] = 49043, + [SMALL_STATE(1198)] = 49052, + [SMALL_STATE(1199)] = 49065, + [SMALL_STATE(1200)] = 49074, + [SMALL_STATE(1201)] = 49083, + [SMALL_STATE(1202)] = 49096, + [SMALL_STATE(1203)] = 49105, + [SMALL_STATE(1204)] = 49118, + [SMALL_STATE(1205)] = 49127, + [SMALL_STATE(1206)] = 49140, + [SMALL_STATE(1207)] = 49149, + [SMALL_STATE(1208)] = 49162, + [SMALL_STATE(1209)] = 49171, + [SMALL_STATE(1210)] = 49184, + [SMALL_STATE(1211)] = 49197, + [SMALL_STATE(1212)] = 49210, + [SMALL_STATE(1213)] = 49219, + [SMALL_STATE(1214)] = 49232, + [SMALL_STATE(1215)] = 49245, + [SMALL_STATE(1216)] = 49258, + [SMALL_STATE(1217)] = 49271, + [SMALL_STATE(1218)] = 49284, + [SMALL_STATE(1219)] = 49297, + [SMALL_STATE(1220)] = 49310, + [SMALL_STATE(1221)] = 49321, + [SMALL_STATE(1222)] = 49332, + [SMALL_STATE(1223)] = 49345, + [SMALL_STATE(1224)] = 49358, + [SMALL_STATE(1225)] = 49371, + [SMALL_STATE(1226)] = 49384, + [SMALL_STATE(1227)] = 49393, + [SMALL_STATE(1228)] = 49406, + [SMALL_STATE(1229)] = 49419, + [SMALL_STATE(1230)] = 49432, + [SMALL_STATE(1231)] = 49445, + [SMALL_STATE(1232)] = 49458, + [SMALL_STATE(1233)] = 49471, + [SMALL_STATE(1234)] = 49480, + [SMALL_STATE(1235)] = 49493, + [SMALL_STATE(1236)] = 49502, + [SMALL_STATE(1237)] = 49515, + [SMALL_STATE(1238)] = 49528, + [SMALL_STATE(1239)] = 49541, + [SMALL_STATE(1240)] = 49552, + [SMALL_STATE(1241)] = 49565, + [SMALL_STATE(1242)] = 49578, + [SMALL_STATE(1243)] = 49591, + [SMALL_STATE(1244)] = 49604, + [SMALL_STATE(1245)] = 49613, + [SMALL_STATE(1246)] = 49626, + [SMALL_STATE(1247)] = 49639, + [SMALL_STATE(1248)] = 49648, + [SMALL_STATE(1249)] = 49659, + [SMALL_STATE(1250)] = 49672, + [SMALL_STATE(1251)] = 49685, + [SMALL_STATE(1252)] = 49698, + [SMALL_STATE(1253)] = 49711, + [SMALL_STATE(1254)] = 49724, + [SMALL_STATE(1255)] = 49737, + [SMALL_STATE(1256)] = 49746, + [SMALL_STATE(1257)] = 49759, + [SMALL_STATE(1258)] = 49772, + [SMALL_STATE(1259)] = 49785, + [SMALL_STATE(1260)] = 49794, + [SMALL_STATE(1261)] = 49807, + [SMALL_STATE(1262)] = 49820, + [SMALL_STATE(1263)] = 49833, + [SMALL_STATE(1264)] = 49842, + [SMALL_STATE(1265)] = 49851, + [SMALL_STATE(1266)] = 49860, + [SMALL_STATE(1267)] = 49871, + [SMALL_STATE(1268)] = 49880, + [SMALL_STATE(1269)] = 49891, + [SMALL_STATE(1270)] = 49900, + [SMALL_STATE(1271)] = 49911, + [SMALL_STATE(1272)] = 49924, + [SMALL_STATE(1273)] = 49933, + [SMALL_STATE(1274)] = 49946, + [SMALL_STATE(1275)] = 49959, + [SMALL_STATE(1276)] = 49972, + [SMALL_STATE(1277)] = 49981, + [SMALL_STATE(1278)] = 49994, + [SMALL_STATE(1279)] = 50003, + [SMALL_STATE(1280)] = 50016, + [SMALL_STATE(1281)] = 50029, + [SMALL_STATE(1282)] = 50042, + [SMALL_STATE(1283)] = 50051, + [SMALL_STATE(1284)] = 50064, + [SMALL_STATE(1285)] = 50077, + [SMALL_STATE(1286)] = 50090, + [SMALL_STATE(1287)] = 50099, + [SMALL_STATE(1288)] = 50112, + [SMALL_STATE(1289)] = 50121, + [SMALL_STATE(1290)] = 50134, + [SMALL_STATE(1291)] = 50147, + [SMALL_STATE(1292)] = 50160, + [SMALL_STATE(1293)] = 50169, + [SMALL_STATE(1294)] = 50182, + [SMALL_STATE(1295)] = 50195, + [SMALL_STATE(1296)] = 50208, + [SMALL_STATE(1297)] = 50217, + [SMALL_STATE(1298)] = 50230, + [SMALL_STATE(1299)] = 50239, + [SMALL_STATE(1300)] = 50248, + [SMALL_STATE(1301)] = 50259, + [SMALL_STATE(1302)] = 50272, + [SMALL_STATE(1303)] = 50285, + [SMALL_STATE(1304)] = 50298, + [SMALL_STATE(1305)] = 50309, + [SMALL_STATE(1306)] = 50322, + [SMALL_STATE(1307)] = 50335, + [SMALL_STATE(1308)] = 50345, + [SMALL_STATE(1309)] = 50353, + [SMALL_STATE(1310)] = 50361, + [SMALL_STATE(1311)] = 50371, + [SMALL_STATE(1312)] = 50381, + [SMALL_STATE(1313)] = 50389, + [SMALL_STATE(1314)] = 50397, + [SMALL_STATE(1315)] = 50407, + [SMALL_STATE(1316)] = 50415, + [SMALL_STATE(1317)] = 50425, + [SMALL_STATE(1318)] = 50433, + [SMALL_STATE(1319)] = 50441, + [SMALL_STATE(1320)] = 50449, + [SMALL_STATE(1321)] = 50457, + [SMALL_STATE(1322)] = 50467, + [SMALL_STATE(1323)] = 50477, + [SMALL_STATE(1324)] = 50487, + [SMALL_STATE(1325)] = 50495, + [SMALL_STATE(1326)] = 50505, + [SMALL_STATE(1327)] = 50513, + [SMALL_STATE(1328)] = 50523, + [SMALL_STATE(1329)] = 50531, + [SMALL_STATE(1330)] = 50541, + [SMALL_STATE(1331)] = 50549, + [SMALL_STATE(1332)] = 50559, + [SMALL_STATE(1333)] = 50567, + [SMALL_STATE(1334)] = 50577, + [SMALL_STATE(1335)] = 50585, + [SMALL_STATE(1336)] = 50593, + [SMALL_STATE(1337)] = 50601, + [SMALL_STATE(1338)] = 50609, + [SMALL_STATE(1339)] = 50619, + [SMALL_STATE(1340)] = 50629, + [SMALL_STATE(1341)] = 50637, + [SMALL_STATE(1342)] = 50647, + [SMALL_STATE(1343)] = 50655, + [SMALL_STATE(1344)] = 50665, + [SMALL_STATE(1345)] = 50673, + [SMALL_STATE(1346)] = 50683, + [SMALL_STATE(1347)] = 50691, + [SMALL_STATE(1348)] = 50699, + [SMALL_STATE(1349)] = 50707, + [SMALL_STATE(1350)] = 50717, + [SMALL_STATE(1351)] = 50727, + [SMALL_STATE(1352)] = 50737, + [SMALL_STATE(1353)] = 50747, + [SMALL_STATE(1354)] = 50757, + [SMALL_STATE(1355)] = 50765, + [SMALL_STATE(1356)] = 50775, + [SMALL_STATE(1357)] = 50783, + [SMALL_STATE(1358)] = 50793, + [SMALL_STATE(1359)] = 50803, + [SMALL_STATE(1360)] = 50813, + [SMALL_STATE(1361)] = 50823, + [SMALL_STATE(1362)] = 50831, + [SMALL_STATE(1363)] = 50839, + [SMALL_STATE(1364)] = 50847, + [SMALL_STATE(1365)] = 50855, + [SMALL_STATE(1366)] = 50865, + [SMALL_STATE(1367)] = 50873, + [SMALL_STATE(1368)] = 50881, + [SMALL_STATE(1369)] = 50891, + [SMALL_STATE(1370)] = 50901, + [SMALL_STATE(1371)] = 50909, + [SMALL_STATE(1372)] = 50919, + [SMALL_STATE(1373)] = 50929, + [SMALL_STATE(1374)] = 50937, + [SMALL_STATE(1375)] = 50947, + [SMALL_STATE(1376)] = 50957, + [SMALL_STATE(1377)] = 50965, + [SMALL_STATE(1378)] = 50973, + [SMALL_STATE(1379)] = 50981, + [SMALL_STATE(1380)] = 50989, + [SMALL_STATE(1381)] = 50997, + [SMALL_STATE(1382)] = 51007, + [SMALL_STATE(1383)] = 51015, + [SMALL_STATE(1384)] = 51025, + [SMALL_STATE(1385)] = 51035, + [SMALL_STATE(1386)] = 51043, + [SMALL_STATE(1387)] = 51053, + [SMALL_STATE(1388)] = 51061, + [SMALL_STATE(1389)] = 51071, + [SMALL_STATE(1390)] = 51079, + [SMALL_STATE(1391)] = 51089, + [SMALL_STATE(1392)] = 51099, + [SMALL_STATE(1393)] = 51109, + [SMALL_STATE(1394)] = 51117, + [SMALL_STATE(1395)] = 51127, + [SMALL_STATE(1396)] = 51137, + [SMALL_STATE(1397)] = 51145, + [SMALL_STATE(1398)] = 51155, + [SMALL_STATE(1399)] = 51163, + [SMALL_STATE(1400)] = 51173, + [SMALL_STATE(1401)] = 51183, + [SMALL_STATE(1402)] = 51193, + [SMALL_STATE(1403)] = 51203, + [SMALL_STATE(1404)] = 51211, + [SMALL_STATE(1405)] = 51221, + [SMALL_STATE(1406)] = 51231, + [SMALL_STATE(1407)] = 51241, + [SMALL_STATE(1408)] = 51251, + [SMALL_STATE(1409)] = 51259, + [SMALL_STATE(1410)] = 51267, + [SMALL_STATE(1411)] = 51277, + [SMALL_STATE(1412)] = 51287, + [SMALL_STATE(1413)] = 51297, + [SMALL_STATE(1414)] = 51305, + [SMALL_STATE(1415)] = 51313, + [SMALL_STATE(1416)] = 51323, + [SMALL_STATE(1417)] = 51331, + [SMALL_STATE(1418)] = 51339, + [SMALL_STATE(1419)] = 51349, + [SMALL_STATE(1420)] = 51357, + [SMALL_STATE(1421)] = 51367, + [SMALL_STATE(1422)] = 51377, + [SMALL_STATE(1423)] = 51387, + [SMALL_STATE(1424)] = 51395, + [SMALL_STATE(1425)] = 51405, + [SMALL_STATE(1426)] = 51413, + [SMALL_STATE(1427)] = 51423, + [SMALL_STATE(1428)] = 51431, + [SMALL_STATE(1429)] = 51441, + [SMALL_STATE(1430)] = 51451, + [SMALL_STATE(1431)] = 51459, + [SMALL_STATE(1432)] = 51467, + [SMALL_STATE(1433)] = 51477, + [SMALL_STATE(1434)] = 51485, + [SMALL_STATE(1435)] = 51493, + [SMALL_STATE(1436)] = 51501, + [SMALL_STATE(1437)] = 51511, + [SMALL_STATE(1438)] = 51519, + [SMALL_STATE(1439)] = 51527, + [SMALL_STATE(1440)] = 51535, + [SMALL_STATE(1441)] = 51543, + [SMALL_STATE(1442)] = 51553, + [SMALL_STATE(1443)] = 51563, + [SMALL_STATE(1444)] = 51573, + [SMALL_STATE(1445)] = 51581, + [SMALL_STATE(1446)] = 51591, + [SMALL_STATE(1447)] = 51599, + [SMALL_STATE(1448)] = 51609, + [SMALL_STATE(1449)] = 51619, + [SMALL_STATE(1450)] = 51629, + [SMALL_STATE(1451)] = 51637, + [SMALL_STATE(1452)] = 51645, + [SMALL_STATE(1453)] = 51655, + [SMALL_STATE(1454)] = 51662, + [SMALL_STATE(1455)] = 51669, + [SMALL_STATE(1456)] = 51676, + [SMALL_STATE(1457)] = 51683, + [SMALL_STATE(1458)] = 51690, + [SMALL_STATE(1459)] = 51697, + [SMALL_STATE(1460)] = 51704, + [SMALL_STATE(1461)] = 51711, + [SMALL_STATE(1462)] = 51718, + [SMALL_STATE(1463)] = 51725, + [SMALL_STATE(1464)] = 51732, + [SMALL_STATE(1465)] = 51739, + [SMALL_STATE(1466)] = 51746, + [SMALL_STATE(1467)] = 51753, + [SMALL_STATE(1468)] = 51760, + [SMALL_STATE(1469)] = 51767, + [SMALL_STATE(1470)] = 51774, + [SMALL_STATE(1471)] = 51781, + [SMALL_STATE(1472)] = 51788, + [SMALL_STATE(1473)] = 51795, + [SMALL_STATE(1474)] = 51802, + [SMALL_STATE(1475)] = 51809, + [SMALL_STATE(1476)] = 51816, + [SMALL_STATE(1477)] = 51823, + [SMALL_STATE(1478)] = 51830, + [SMALL_STATE(1479)] = 51837, + [SMALL_STATE(1480)] = 51844, + [SMALL_STATE(1481)] = 51851, + [SMALL_STATE(1482)] = 51858, + [SMALL_STATE(1483)] = 51865, + [SMALL_STATE(1484)] = 51872, + [SMALL_STATE(1485)] = 51879, + [SMALL_STATE(1486)] = 51886, + [SMALL_STATE(1487)] = 51893, + [SMALL_STATE(1488)] = 51900, + [SMALL_STATE(1489)] = 51907, + [SMALL_STATE(1490)] = 51914, + [SMALL_STATE(1491)] = 51921, + [SMALL_STATE(1492)] = 51928, + [SMALL_STATE(1493)] = 51935, + [SMALL_STATE(1494)] = 51942, + [SMALL_STATE(1495)] = 51949, + [SMALL_STATE(1496)] = 51956, + [SMALL_STATE(1497)] = 51963, + [SMALL_STATE(1498)] = 51970, + [SMALL_STATE(1499)] = 51977, + [SMALL_STATE(1500)] = 51984, + [SMALL_STATE(1501)] = 51991, + [SMALL_STATE(1502)] = 51998, + [SMALL_STATE(1503)] = 52005, + [SMALL_STATE(1504)] = 52012, + [SMALL_STATE(1505)] = 52019, + [SMALL_STATE(1506)] = 52026, + [SMALL_STATE(1507)] = 52033, + [SMALL_STATE(1508)] = 52040, + [SMALL_STATE(1509)] = 52047, + [SMALL_STATE(1510)] = 52054, + [SMALL_STATE(1511)] = 52061, + [SMALL_STATE(1512)] = 52068, + [SMALL_STATE(1513)] = 52075, + [SMALL_STATE(1514)] = 52082, + [SMALL_STATE(1515)] = 52089, + [SMALL_STATE(1516)] = 52096, + [SMALL_STATE(1517)] = 52103, + [SMALL_STATE(1518)] = 52110, + [SMALL_STATE(1519)] = 52117, + [SMALL_STATE(1520)] = 52124, + [SMALL_STATE(1521)] = 52131, + [SMALL_STATE(1522)] = 52138, + [SMALL_STATE(1523)] = 52145, + [SMALL_STATE(1524)] = 52152, + [SMALL_STATE(1525)] = 52159, + [SMALL_STATE(1526)] = 52166, + [SMALL_STATE(1527)] = 52173, + [SMALL_STATE(1528)] = 52180, + [SMALL_STATE(1529)] = 52187, + [SMALL_STATE(1530)] = 52194, + [SMALL_STATE(1531)] = 52201, + [SMALL_STATE(1532)] = 52208, + [SMALL_STATE(1533)] = 52215, + [SMALL_STATE(1534)] = 52222, + [SMALL_STATE(1535)] = 52229, + [SMALL_STATE(1536)] = 52236, + [SMALL_STATE(1537)] = 52243, + [SMALL_STATE(1538)] = 52250, + [SMALL_STATE(1539)] = 52257, + [SMALL_STATE(1540)] = 52264, + [SMALL_STATE(1541)] = 52271, + [SMALL_STATE(1542)] = 52278, + [SMALL_STATE(1543)] = 52285, + [SMALL_STATE(1544)] = 52292, + [SMALL_STATE(1545)] = 52299, + [SMALL_STATE(1546)] = 52306, + [SMALL_STATE(1547)] = 52313, + [SMALL_STATE(1548)] = 52320, + [SMALL_STATE(1549)] = 52327, + [SMALL_STATE(1550)] = 52334, + [SMALL_STATE(1551)] = 52341, + [SMALL_STATE(1552)] = 52348, + [SMALL_STATE(1553)] = 52355, + [SMALL_STATE(1554)] = 52362, + [SMALL_STATE(1555)] = 52369, + [SMALL_STATE(1556)] = 52376, + [SMALL_STATE(1557)] = 52383, + [SMALL_STATE(1558)] = 52390, + [SMALL_STATE(1559)] = 52397, + [SMALL_STATE(1560)] = 52404, + [SMALL_STATE(1561)] = 52411, + [SMALL_STATE(1562)] = 52418, + [SMALL_STATE(1563)] = 52425, + [SMALL_STATE(1564)] = 52432, + [SMALL_STATE(1565)] = 52439, + [SMALL_STATE(1566)] = 52446, + [SMALL_STATE(1567)] = 52453, + [SMALL_STATE(1568)] = 52460, + [SMALL_STATE(1569)] = 52467, + [SMALL_STATE(1570)] = 52474, + [SMALL_STATE(1571)] = 52481, + [SMALL_STATE(1572)] = 52488, + [SMALL_STATE(1573)] = 52495, + [SMALL_STATE(1574)] = 52502, + [SMALL_STATE(1575)] = 52509, + [SMALL_STATE(1576)] = 52516, + [SMALL_STATE(1577)] = 52523, + [SMALL_STATE(1578)] = 52530, + [SMALL_STATE(1579)] = 52537, + [SMALL_STATE(1580)] = 52544, + [SMALL_STATE(1581)] = 52551, + [SMALL_STATE(1582)] = 52558, + [SMALL_STATE(1583)] = 52565, + [SMALL_STATE(1584)] = 52572, + [SMALL_STATE(1585)] = 52579, + [SMALL_STATE(1586)] = 52586, + [SMALL_STATE(1587)] = 52593, + [SMALL_STATE(1588)] = 52600, + [SMALL_STATE(1589)] = 52607, + [SMALL_STATE(1590)] = 52614, + [SMALL_STATE(1591)] = 52621, + [SMALL_STATE(1592)] = 52628, + [SMALL_STATE(1593)] = 52635, + [SMALL_STATE(1594)] = 52642, + [SMALL_STATE(1595)] = 52649, + [SMALL_STATE(1596)] = 52656, + [SMALL_STATE(1597)] = 52663, + [SMALL_STATE(1598)] = 52670, + [SMALL_STATE(1599)] = 52677, + [SMALL_STATE(1600)] = 52684, + [SMALL_STATE(1601)] = 52691, + [SMALL_STATE(1602)] = 52698, + [SMALL_STATE(1603)] = 52705, + [SMALL_STATE(1604)] = 52712, + [SMALL_STATE(1605)] = 52719, + [SMALL_STATE(1606)] = 52726, + [SMALL_STATE(1607)] = 52733, + [SMALL_STATE(1608)] = 52740, + [SMALL_STATE(1609)] = 52747, + [SMALL_STATE(1610)] = 52754, + [SMALL_STATE(1611)] = 52761, + [SMALL_STATE(1612)] = 52768, + [SMALL_STATE(1613)] = 52775, + [SMALL_STATE(1614)] = 52782, + [SMALL_STATE(1615)] = 52789, + [SMALL_STATE(1616)] = 52796, + [SMALL_STATE(1617)] = 52803, + [SMALL_STATE(1618)] = 52810, + [SMALL_STATE(1619)] = 52817, + [SMALL_STATE(1620)] = 52824, + [SMALL_STATE(1621)] = 52831, + [SMALL_STATE(1622)] = 52838, + [SMALL_STATE(1623)] = 52845, + [SMALL_STATE(1624)] = 52852, + [SMALL_STATE(1625)] = 52859, + [SMALL_STATE(1626)] = 52866, + [SMALL_STATE(1627)] = 52873, + [SMALL_STATE(1628)] = 52880, + [SMALL_STATE(1629)] = 52887, + [SMALL_STATE(1630)] = 52894, + [SMALL_STATE(1631)] = 52901, + [SMALL_STATE(1632)] = 52908, + [SMALL_STATE(1633)] = 52915, + [SMALL_STATE(1634)] = 52922, + [SMALL_STATE(1635)] = 52929, + [SMALL_STATE(1636)] = 52936, + [SMALL_STATE(1637)] = 52943, + [SMALL_STATE(1638)] = 52950, + [SMALL_STATE(1639)] = 52957, + [SMALL_STATE(1640)] = 52964, + [SMALL_STATE(1641)] = 52971, + [SMALL_STATE(1642)] = 52978, + [SMALL_STATE(1643)] = 52985, + [SMALL_STATE(1644)] = 52992, + [SMALL_STATE(1645)] = 52999, + [SMALL_STATE(1646)] = 53006, + [SMALL_STATE(1647)] = 53013, + [SMALL_STATE(1648)] = 53020, + [SMALL_STATE(1649)] = 53027, + [SMALL_STATE(1650)] = 53034, + [SMALL_STATE(1651)] = 53041, + [SMALL_STATE(1652)] = 53048, + [SMALL_STATE(1653)] = 53055, + [SMALL_STATE(1654)] = 53062, + [SMALL_STATE(1655)] = 53069, + [SMALL_STATE(1656)] = 53076, + [SMALL_STATE(1657)] = 53083, + [SMALL_STATE(1658)] = 53090, + [SMALL_STATE(1659)] = 53097, + [SMALL_STATE(1660)] = 53104, + [SMALL_STATE(1661)] = 53111, + [SMALL_STATE(1662)] = 53118, + [SMALL_STATE(1663)] = 53125, + [SMALL_STATE(1664)] = 53132, + [SMALL_STATE(1665)] = 53139, + [SMALL_STATE(1666)] = 53146, + [SMALL_STATE(1667)] = 53153, + [SMALL_STATE(1668)] = 53160, + [SMALL_STATE(1669)] = 53167, + [SMALL_STATE(1670)] = 53174, + [SMALL_STATE(1671)] = 53181, + [SMALL_STATE(1672)] = 53188, + [SMALL_STATE(1673)] = 53195, + [SMALL_STATE(1674)] = 53202, + [SMALL_STATE(1675)] = 53209, + [SMALL_STATE(1676)] = 53216, + [SMALL_STATE(1677)] = 53223, + [SMALL_STATE(1678)] = 53230, + [SMALL_STATE(1679)] = 53237, + [SMALL_STATE(1680)] = 53244, + [SMALL_STATE(1681)] = 53251, + [SMALL_STATE(1682)] = 53258, + [SMALL_STATE(1683)] = 53265, + [SMALL_STATE(1684)] = 53272, + [SMALL_STATE(1685)] = 53279, + [SMALL_STATE(1686)] = 53286, + [SMALL_STATE(1687)] = 53293, + [SMALL_STATE(1688)] = 53300, + [SMALL_STATE(1689)] = 53307, + [SMALL_STATE(1690)] = 53314, + [SMALL_STATE(1691)] = 53321, + [SMALL_STATE(1692)] = 53328, + [SMALL_STATE(1693)] = 53335, + [SMALL_STATE(1694)] = 53342, + [SMALL_STATE(1695)] = 53349, + [SMALL_STATE(1696)] = 53356, + [SMALL_STATE(1697)] = 53363, + [SMALL_STATE(1698)] = 53370, + [SMALL_STATE(1699)] = 53377, + [SMALL_STATE(1700)] = 53384, + [SMALL_STATE(1701)] = 53391, + [SMALL_STATE(1702)] = 53398, + [SMALL_STATE(1703)] = 53405, + [SMALL_STATE(1704)] = 53412, + [SMALL_STATE(1705)] = 53419, + [SMALL_STATE(1706)] = 53426, + [SMALL_STATE(1707)] = 53433, + [SMALL_STATE(1708)] = 53440, + [SMALL_STATE(1709)] = 53447, + [SMALL_STATE(1710)] = 53454, + [SMALL_STATE(1711)] = 53461, + [SMALL_STATE(1712)] = 53468, + [SMALL_STATE(1713)] = 53475, + [SMALL_STATE(1714)] = 53482, + [SMALL_STATE(1715)] = 53489, + [SMALL_STATE(1716)] = 53496, + [SMALL_STATE(1717)] = 53503, + [SMALL_STATE(1718)] = 53510, + [SMALL_STATE(1719)] = 53517, + [SMALL_STATE(1720)] = 53524, + [SMALL_STATE(1721)] = 53531, + [SMALL_STATE(1722)] = 53538, + [SMALL_STATE(1723)] = 53545, + [SMALL_STATE(1724)] = 53552, + [SMALL_STATE(1725)] = 53559, + [SMALL_STATE(1726)] = 53566, + [SMALL_STATE(1727)] = 53573, + [SMALL_STATE(1728)] = 53580, + [SMALL_STATE(1729)] = 53587, + [SMALL_STATE(1730)] = 53594, + [SMALL_STATE(1731)] = 53601, + [SMALL_STATE(1732)] = 53608, + [SMALL_STATE(1733)] = 53615, + [SMALL_STATE(1734)] = 53622, + [SMALL_STATE(1735)] = 53629, + [SMALL_STATE(1736)] = 53636, + [SMALL_STATE(1737)] = 53643, + [SMALL_STATE(1738)] = 53650, + [SMALL_STATE(1739)] = 53657, + [SMALL_STATE(1740)] = 53664, + [SMALL_STATE(1741)] = 53671, + [SMALL_STATE(1742)] = 53678, + [SMALL_STATE(1743)] = 53685, + [SMALL_STATE(1744)] = 53692, + [SMALL_STATE(1745)] = 53699, + [SMALL_STATE(1746)] = 53706, + [SMALL_STATE(1747)] = 53713, + [SMALL_STATE(1748)] = 53720, + [SMALL_STATE(1749)] = 53727, + [SMALL_STATE(1750)] = 53734, + [SMALL_STATE(1751)] = 53741, + [SMALL_STATE(1752)] = 53748, + [SMALL_STATE(1753)] = 53755, + [SMALL_STATE(1754)] = 53762, + [SMALL_STATE(1755)] = 53769, + [SMALL_STATE(1756)] = 53776, + [SMALL_STATE(1757)] = 53783, + [SMALL_STATE(1758)] = 53790, + [SMALL_STATE(1759)] = 53797, + [SMALL_STATE(1760)] = 53804, + [SMALL_STATE(1761)] = 53811, + [SMALL_STATE(1762)] = 53818, + [SMALL_STATE(1763)] = 53825, + [SMALL_STATE(1764)] = 53832, + [SMALL_STATE(1765)] = 53839, + [SMALL_STATE(1766)] = 53846, + [SMALL_STATE(1767)] = 53853, + [SMALL_STATE(1768)] = 53860, + [SMALL_STATE(1769)] = 53867, + [SMALL_STATE(1770)] = 53874, + [SMALL_STATE(1771)] = 53881, + [SMALL_STATE(1772)] = 53888, + [SMALL_STATE(1773)] = 53895, + [SMALL_STATE(1774)] = 53902, + [SMALL_STATE(1775)] = 53909, + [SMALL_STATE(1776)] = 53916, + [SMALL_STATE(1777)] = 53923, + [SMALL_STATE(1778)] = 53930, + [SMALL_STATE(1779)] = 53937, + [SMALL_STATE(1780)] = 53944, + [SMALL_STATE(1781)] = 53951, + [SMALL_STATE(1782)] = 53958, + [SMALL_STATE(1783)] = 53965, + [SMALL_STATE(1784)] = 53972, + [SMALL_STATE(1785)] = 53979, + [SMALL_STATE(1786)] = 53986, + [SMALL_STATE(1787)] = 53993, + [SMALL_STATE(1788)] = 54000, + [SMALL_STATE(1789)] = 54007, + [SMALL_STATE(1790)] = 54014, + [SMALL_STATE(1791)] = 54021, + [SMALL_STATE(1792)] = 54028, + [SMALL_STATE(1793)] = 54035, + [SMALL_STATE(1794)] = 54042, + [SMALL_STATE(1795)] = 54049, + [SMALL_STATE(1796)] = 54056, + [SMALL_STATE(1797)] = 54063, + [SMALL_STATE(1798)] = 54070, + [SMALL_STATE(1799)] = 54077, + [SMALL_STATE(1800)] = 54084, + [SMALL_STATE(1801)] = 54091, + [SMALL_STATE(1802)] = 54098, + [SMALL_STATE(1803)] = 54105, + [SMALL_STATE(1804)] = 54112, + [SMALL_STATE(1805)] = 54119, + [SMALL_STATE(1806)] = 54126, + [SMALL_STATE(1807)] = 54133, + [SMALL_STATE(1808)] = 54140, + [SMALL_STATE(1809)] = 54147, + [SMALL_STATE(1810)] = 54154, + [SMALL_STATE(1811)] = 54161, + [SMALL_STATE(1812)] = 54168, + [SMALL_STATE(1813)] = 54175, + [SMALL_STATE(1814)] = 54182, + [SMALL_STATE(1815)] = 54189, + [SMALL_STATE(1816)] = 54196, + [SMALL_STATE(1817)] = 54203, + [SMALL_STATE(1818)] = 54210, + [SMALL_STATE(1819)] = 54217, + [SMALL_STATE(1820)] = 54224, + [SMALL_STATE(1821)] = 54231, + [SMALL_STATE(1822)] = 54238, + [SMALL_STATE(1823)] = 54245, + [SMALL_STATE(1824)] = 54252, + [SMALL_STATE(1825)] = 54259, + [SMALL_STATE(1826)] = 54266, + [SMALL_STATE(1827)] = 54273, + [SMALL_STATE(1828)] = 54280, + [SMALL_STATE(1829)] = 54287, + [SMALL_STATE(1830)] = 54294, + [SMALL_STATE(1831)] = 54301, + [SMALL_STATE(1832)] = 54308, + [SMALL_STATE(1833)] = 54315, + [SMALL_STATE(1834)] = 54322, + [SMALL_STATE(1835)] = 54329, + [SMALL_STATE(1836)] = 54336, + [SMALL_STATE(1837)] = 54343, + [SMALL_STATE(1838)] = 54350, + [SMALL_STATE(1839)] = 54357, + [SMALL_STATE(1840)] = 54364, + [SMALL_STATE(1841)] = 54371, + [SMALL_STATE(1842)] = 54378, + [SMALL_STATE(1843)] = 54385, + [SMALL_STATE(1844)] = 54392, + [SMALL_STATE(1845)] = 54399, + [SMALL_STATE(1846)] = 54406, + [SMALL_STATE(1847)] = 54413, + [SMALL_STATE(1848)] = 54420, + [SMALL_STATE(1849)] = 54427, + [SMALL_STATE(1850)] = 54434, + [SMALL_STATE(1851)] = 54441, + [SMALL_STATE(1852)] = 54448, + [SMALL_STATE(1853)] = 54455, + [SMALL_STATE(1854)] = 54462, + [SMALL_STATE(1855)] = 54469, + [SMALL_STATE(1856)] = 54476, + [SMALL_STATE(1857)] = 54483, + [SMALL_STATE(1858)] = 54490, + [SMALL_STATE(1859)] = 54497, + [SMALL_STATE(1860)] = 54504, + [SMALL_STATE(1861)] = 54511, + [SMALL_STATE(1862)] = 54518, + [SMALL_STATE(1863)] = 54525, + [SMALL_STATE(1864)] = 54532, + [SMALL_STATE(1865)] = 54539, + [SMALL_STATE(1866)] = 54546, + [SMALL_STATE(1867)] = 54553, + [SMALL_STATE(1868)] = 54560, + [SMALL_STATE(1869)] = 54567, + [SMALL_STATE(1870)] = 54574, + [SMALL_STATE(1871)] = 54581, + [SMALL_STATE(1872)] = 54588, + [SMALL_STATE(1873)] = 54595, + [SMALL_STATE(1874)] = 54602, + [SMALL_STATE(1875)] = 54609, + [SMALL_STATE(1876)] = 54616, + [SMALL_STATE(1877)] = 54623, + [SMALL_STATE(1878)] = 54630, + [SMALL_STATE(1879)] = 54637, + [SMALL_STATE(1880)] = 54644, + [SMALL_STATE(1881)] = 54651, + [SMALL_STATE(1882)] = 54658, + [SMALL_STATE(1883)] = 54665, + [SMALL_STATE(1884)] = 54672, + [SMALL_STATE(1885)] = 54679, + [SMALL_STATE(1886)] = 54686, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(830), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(181), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1260), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(666), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(640), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(27), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(733), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1323), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(731), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1885), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1884), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(31), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1883), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(718), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1882), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1129), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(750), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(759), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(18), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(382), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1137), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1878), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(551), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1146), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1876), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1875), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(394), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(320), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(558), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(761), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(762), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1874), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(671), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(763), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(362), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(57), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(413), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1873), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(973), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(767), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(640), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(733), + [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1885), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1883), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1129), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(750), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(759), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1137), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(551), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1146), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1875), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1873), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_of_statements, 1), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(925), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(181), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1260), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1300), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(31), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(718), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1882), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(18), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(382), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1876), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1875), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(394), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(320), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(558), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(761), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(762), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1874), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(671), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(763), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(362), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(57), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(413), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_of_statements, 2), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(973), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(767), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(640), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(800), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1885), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1883), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1392), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(750), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(759), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1384), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(551), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1146), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1875), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1873), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 34), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 34), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 32), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 32), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 12), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 12), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 2), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 2), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 21), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 21), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 2), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 2), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 32), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 32), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 32), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 32), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 26), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 26), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 2), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 2), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 12), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 12), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 26), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 26), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_statement, 1), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_statement, 1), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 1), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 1), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 12), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 12), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 2), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 2), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 26), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 26), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 13), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 13), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name, 3), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name, 3), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 3), SHIFT(866), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 3), SHIFT(91), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name, 1), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name, 1), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_reference, 1), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_reference, 1), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_aggregate, 1), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_aggregate, 1), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delta_aggregate, 1), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_aggregate, 1), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_aggregate, 1), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aggregate, 1), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_reference, 3), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_reference, 3), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_reference, 3), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_reference, 3), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_indication_paren_constraint, 2), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication_paren_constraint, 2), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_indication_paren_constraint, 1), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication_paren_constraint, 1), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary, 1), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary, 1), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_clause, 1), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_aspect_clause, 1), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 24), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 24), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 24), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 24), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 24), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 24), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 35), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 35), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proper_body, 1), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proper_body, 1), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 7), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 7), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 22), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 22), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 23), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 23), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_declaration, 1), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_declaration, 1), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 31), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 31), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_renaming_declaration, 1), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_renaming_declaration, 1), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 15), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 15), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 23), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 23), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 12), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 12), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 22), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 22), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 14), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 14), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 35), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 35), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 31), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 31), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 24), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 24), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 24), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 24), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 14), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 14), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 24), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 24), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 12), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 12), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 18), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 18), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 10), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 10), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 3), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 3), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 8), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 8), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 17), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 17), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_indication_paren_constraint, 3), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication_paren_constraint, 3), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor, 3), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor, 3), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2), SHIFT_REPEAT(754), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2), SHIFT_REPEAT(754), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor, 2), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor, 2), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor, 1), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor, 1), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 2), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 2), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_simple_expression_repeat1, 2), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_simple_expression_repeat1, 2), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_expression_repeat1, 2), SHIFT_REPEAT(755), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_expression_repeat1, 2), SHIFT_REPEAT(755), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 1), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 1), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 3), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 3), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequence_of_statements_repeat2, 2), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat2, 2), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1876), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), REDUCE(sym_component_choice_list, 1), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(1569), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 5), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 5), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defining_identifier_list, 1), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(1857), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 2, .production_id = 11), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation, 1), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subtype_indication, 1, .production_id = 4), REDUCE(sym_iterator_specification, 4), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subtype_indication, 1, .production_id = 4), SHIFT(419), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subtype_indication, 1, .production_id = 4), REDUCE(sym_iterator_specification, 3), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(866), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark, 1), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1250), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(767), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1883), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(797), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(795), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1878), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1146), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1875), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 1, .production_id = 4), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 19), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(767), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1883), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(797), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(795), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1878), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1146), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1875), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(767), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1883), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(797), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(795), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1881), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1146), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(779), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1250), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(640), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(911), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1783), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1875), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation, 3), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice, 1), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation, 4), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(450), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(427), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(380), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(403), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarative_item_pragma, 1), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declarative_item_pragma, 1), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 1), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 2, .production_id = 4), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 3, .production_id = 11), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(767), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1883), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1878), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1146), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_constraint, 1), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(166), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(181), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1260), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1250), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(767), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 9), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 9), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 9), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 9), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 9), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1054), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1585), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1586), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2), SHIFT(1505), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_and_result_profile, 2), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_parameter_profile, 1), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_and_result_profile, 1), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2), SHIFT(1705), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_operation_declaration, 1), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_operation_declaration, 1), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_global_aspect_definition, 2, .production_id = 27), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 1), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_element_declaration, 1), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_element_declaration, 1), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(447), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_defining_identifier_list, 1), SHIFT(553), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), REDUCE(sym_defining_identifier_list, 1), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_list_repeat1, 2), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3), SHIFT(1644), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_formal_parameter_declaration, 1), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_parameter_declaration, 1), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_type_declaration, 1), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_type_declaration, 1), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4), SHIFT(1740), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tick, 1), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tick, 1), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2), SHIFT(1492), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_list_repeat1, 2), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(1673), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_operation_item, 1), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_set, 1), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_list, 1), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_item, 1), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 37), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 37), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(391), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_handler_list_repeat1, 2), SHIFT_REPEAT(616), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_handler_list_repeat1, 2), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_handler_list_repeat1, 2), SHIFT_REPEAT(1875), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(425), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler_list, 1), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(429), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_subtype_definition, 1), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 20), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 36), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 28), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 25), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_global_aspect_definition, 2), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_defining_identifier_list, 1), SHIFT(601), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_group_designator, 1), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_item, 1), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_item, 1), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 2), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 2), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(388), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_list_repeat1, 2), SHIFT_REPEAT(802), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 33), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1157), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark, 3), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(1459), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 16), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 1), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 2), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(418), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4), SHIFT(1062), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(383), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3), SHIFT(1168), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4), SHIFT(1168), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_item, 1), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_item, 1), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(176), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_list_repeat1, 2), SHIFT_REPEAT(791), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_defining_identifier_list, 1), SHIFT(624), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_specification, 1), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subprogram_specification, 1), SHIFT(674), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3), SHIFT(1051), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_definition, 1), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_array_definition, 6), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(97), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unconstrained_array_definition, 6), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2), SHIFT(1114), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(1280), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 1), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1857), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_defining_identifier_list_repeat1, 2), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2), SHIFT(1168), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2), SHIFT(133), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(167), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subprogram_specification, 1), SHIFT(670), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defining_identifier_list, 2), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subprogram_specification, 1), SHIFT(1475), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_value, 2), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subprogram_specification, 1), SHIFT(1713), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(165), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1214), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 3), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification_list, 2), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(224), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2), SHIFT_REPEAT(402), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1569), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(675), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_set, 2), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(834), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute_reference, 3), SHIFT(409), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 2), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(303), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 4), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_list, 2), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 2), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 2), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1242), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_part, 1), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(341), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_subtype_indication, 1), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_specification_list_repeat1, 2), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1138), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(192), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1124), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 2), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1381), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(212), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 2), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 1), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(354), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(415), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(711), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(267), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_select, 2), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification_list, 1), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_type_definition, 1), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_name, 1), SHIFT(232), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_type_definition, 1), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_type_definition, 1), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 1), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1674), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_point_definition, 1), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 22), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_part, 1), SHIFT(454), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_subtype_indication, 1), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_range, 1), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 29), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 6), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 30), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 6), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 1), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 2), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 2), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_quantified_expression, 1), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 2), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 2), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 2), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [4585] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_ada(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h new file mode 100644 index 0000000..2b14ac1 --- /dev/null +++ b/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_