From 0631b99d9096e10f4e289efe618e518debe918b4 Mon Sep 17 00:00:00 2001 From: Brian Ryall Date: Mon, 9 Oct 2023 21:48:03 -0400 Subject: [PATCH] feat: add named field for narration and payee --- grammar.js | 6 +- src/grammar.json | 48 +- src/node-types.json | 28 +- src/parser.c | 4445 ++++++++++++++++++++++--------------------- 4 files changed, 2288 insertions(+), 2239 deletions(-) diff --git a/grammar.js b/grammar.js index 8d70fed..2c42c4e 100644 --- a/grammar.js +++ b/grammar.js @@ -169,10 +169,10 @@ module.exports = grammar({ _txn_strings: $ => choice( seq( - alias($.string, $.payee), - alias($.string, $.narration), + field("payee", alias($.string, $.payee)), + field("narration", alias($.string, $.narration)), ), - alias($.string, $.narration), + field("narration", alias($.string, $.narration)), ), // OPTIONAL diff --git a/src/grammar.json b/src/grammar.json index b3bf882..2e43972 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -474,33 +474,45 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "payee", "content": { - "type": "SYMBOL", - "name": "string" - }, - "named": true, - "value": "payee" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "string" + }, + "named": true, + "value": "payee" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "narration", "content": { - "type": "SYMBOL", - "name": "string" - }, - "named": true, - "value": "narration" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "string" + }, + "named": true, + "value": "narration" + } } ] }, { - "type": "ALIAS", + "type": "FIELD", + "name": "narration", "content": { - "type": "SYMBOL", - "name": "string" - }, - "named": true, - "value": "narration" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "string" + }, + "named": true, + "value": "narration" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index b191713..e3220ee 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1349,6 +1349,26 @@ } ] }, + "narration": { + "multiple": false, + "required": false, + "types": [ + { + "type": "narration", + "named": true + } + ] + }, + "payee": { + "multiple": false, + "required": false, + "types": [ + { + "type": "payee", + "named": true + } + ] + }, "tags_links": { "multiple": false, "required": false, @@ -1382,14 +1402,6 @@ "type": "key_value", "named": true }, - { - "type": "narration", - "named": true - }, - { - "type": "payee", - "named": true - }, { "type": "posting", "named": true diff --git a/src/parser.c b/src/parser.c index f1f5c6e..4b78bdd 100644 --- a/src/parser.c +++ b/src/parser.c @@ -12,9 +12,9 @@ #define ALIAS_COUNT 2 #define TOKEN_COUNT 68 #define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 28 +#define FIELD_COUNT 30 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 87 +#define PRODUCTION_ID_COUNT 88 enum { sym_identifier = 1, @@ -991,18 +991,20 @@ enum { field_item = 14, field_key = 15, field_name = 16, - field_note = 17, - field_opt_booking = 18, - field_optflag = 19, - field_per = 20, - field_price_annotation = 21, - field_query = 22, - field_subsection = 23, - field_tags_links = 24, - field_total = 25, - field_txn = 26, - field_type = 27, - field_value = 28, + field_narration = 17, + field_note = 18, + field_opt_booking = 19, + field_optflag = 20, + field_payee = 21, + field_per = 22, + field_price_annotation = 23, + field_query = 24, + field_subsection = 25, + field_tags_links = 26, + field_total = 27, + field_txn = 28, + field_type = 29, + field_value = 30, }; static const char * const ts_field_names[] = { @@ -1023,9 +1025,11 @@ static const char * const ts_field_names[] = { [field_item] = "item", [field_key] = "key", [field_name] = "name", + [field_narration] = "narration", [field_note] = "note", [field_opt_booking] = "opt_booking", [field_optflag] = "optflag", + [field_payee] = "payee", [field_per] = "per", [field_price_annotation] = "price_annotation", [field_query] = "query", @@ -1041,87 +1045,90 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 2}, - [5] = {.index = 4, .length = 2}, - [6] = {.index = 6, .length = 2}, - [7] = {.index = 8, .length = 2}, - [8] = {.index = 10, .length = 2}, - [9] = {.index = 12, .length = 2}, - [11] = {.index = 14, .length = 3}, - [12] = {.index = 17, .length = 3}, - [13] = {.index = 20, .length = 2}, - [14] = {.index = 22, .length = 1}, - [15] = {.index = 23, .length = 2}, - [16] = {.index = 25, .length = 3}, - [17] = {.index = 28, .length = 3}, - [18] = {.index = 31, .length = 3}, - [19] = {.index = 34, .length = 3}, - [20] = {.index = 37, .length = 3}, - [21] = {.index = 40, .length = 3}, - [22] = {.index = 43, .length = 3}, - [23] = {.index = 46, .length = 3}, - [24] = {.index = 49, .length = 3}, - [25] = {.index = 52, .length = 3}, - [26] = {.index = 55, .length = 3}, - [27] = {.index = 58, .length = 3}, - [28] = {.index = 61, .length = 3}, - [29] = {.index = 64, .length = 3}, - [30] = {.index = 67, .length = 4}, - [31] = {.index = 71, .length = 4}, - [32] = {.index = 75, .length = 4}, - [33] = {.index = 79, .length = 4}, - [34] = {.index = 83, .length = 4}, - [35] = {.index = 87, .length = 4}, - [36] = {.index = 91, .length = 4}, - [37] = {.index = 95, .length = 1}, - [38] = {.index = 96, .length = 4}, - [39] = {.index = 100, .length = 5}, - [40] = {.index = 105, .length = 1}, - [41] = {.index = 106, .length = 1}, - [42] = {.index = 107, .length = 2}, - [43] = {.index = 109, .length = 2}, - [44] = {.index = 111, .length = 2}, - [45] = {.index = 113, .length = 2}, - [46] = {.index = 115, .length = 2}, - [47] = {.index = 117, .length = 2}, - [48] = {.index = 119, .length = 1}, - [49] = {.index = 120, .length = 2}, - [50] = {.index = 122, .length = 1}, - [51] = {.index = 123, .length = 3}, - [52] = {.index = 126, .length = 3}, - [53] = {.index = 129, .length = 3}, - [54] = {.index = 132, .length = 3}, - [55] = {.index = 135, .length = 3}, - [56] = {.index = 138, .length = 3}, - [57] = {.index = 141, .length = 3}, - [58] = {.index = 144, .length = 2}, - [59] = {.index = 146, .length = 2}, - [60] = {.index = 148, .length = 3}, - [61] = {.index = 151, .length = 3}, - [62] = {.index = 154, .length = 4}, - [63] = {.index = 158, .length = 3}, - [64] = {.index = 161, .length = 3}, - [65] = {.index = 164, .length = 3}, - [66] = {.index = 167, .length = 3}, - [67] = {.index = 170, .length = 4}, - [68] = {.index = 174, .length = 4}, - [69] = {.index = 178, .length = 4}, - [70] = {.index = 182, .length = 3}, - [71] = {.index = 185, .length = 4}, - [72] = {.index = 189, .length = 4}, - [73] = {.index = 193, .length = 4}, - [74] = {.index = 197, .length = 4}, - [75] = {.index = 201, .length = 4}, - [76] = {.index = 205, .length = 4}, - [77] = {.index = 209, .length = 4}, - [78] = {.index = 213, .length = 5}, - [79] = {.index = 218, .length = 4}, - [80] = {.index = 222, .length = 4}, - [81] = {.index = 226, .length = 5}, - [82] = {.index = 231, .length = 5}, - [83] = {.index = 236, .length = 5}, - [84] = {.index = 241, .length = 5}, - [85] = {.index = 246, .length = 5}, - [86] = {.index = 251, .length = 6}, + [4] = {.index = 4, .length = 1}, + [5] = {.index = 5, .length = 2}, + [6] = {.index = 7, .length = 2}, + [7] = {.index = 9, .length = 2}, + [8] = {.index = 11, .length = 2}, + [9] = {.index = 13, .length = 2}, + [10] = {.index = 15, .length = 2}, + [11] = {.index = 17, .length = 4}, + [12] = {.index = 21, .length = 3}, + [13] = {.index = 24, .length = 3}, + [14] = {.index = 27, .length = 2}, + [15] = {.index = 29, .length = 1}, + [16] = {.index = 30, .length = 2}, + [17] = {.index = 32, .length = 3}, + [18] = {.index = 35, .length = 3}, + [19] = {.index = 38, .length = 3}, + [20] = {.index = 41, .length = 3}, + [21] = {.index = 44, .length = 3}, + [22] = {.index = 47, .length = 3}, + [23] = {.index = 50, .length = 3}, + [24] = {.index = 53, .length = 3}, + [25] = {.index = 56, .length = 3}, + [26] = {.index = 59, .length = 3}, + [27] = {.index = 62, .length = 3}, + [28] = {.index = 65, .length = 3}, + [29] = {.index = 68, .length = 5}, + [30] = {.index = 73, .length = 5}, + [31] = {.index = 78, .length = 4}, + [32] = {.index = 82, .length = 4}, + [33] = {.index = 86, .length = 4}, + [34] = {.index = 90, .length = 4}, + [35] = {.index = 94, .length = 4}, + [36] = {.index = 98, .length = 4}, + [37] = {.index = 102, .length = 4}, + [38] = {.index = 106, .length = 1}, + [39] = {.index = 107, .length = 6}, + [40] = {.index = 113, .length = 5}, + [41] = {.index = 118, .length = 1}, + [42] = {.index = 119, .length = 1}, + [43] = {.index = 120, .length = 2}, + [44] = {.index = 122, .length = 2}, + [45] = {.index = 124, .length = 2}, + [46] = {.index = 126, .length = 2}, + [47] = {.index = 128, .length = 2}, + [48] = {.index = 130, .length = 2}, + [49] = {.index = 132, .length = 1}, + [50] = {.index = 133, .length = 2}, + [51] = {.index = 135, .length = 1}, + [52] = {.index = 136, .length = 3}, + [53] = {.index = 139, .length = 3}, + [54] = {.index = 142, .length = 3}, + [55] = {.index = 145, .length = 3}, + [56] = {.index = 148, .length = 3}, + [57] = {.index = 151, .length = 3}, + [58] = {.index = 154, .length = 3}, + [59] = {.index = 157, .length = 2}, + [60] = {.index = 159, .length = 2}, + [61] = {.index = 161, .length = 3}, + [62] = {.index = 164, .length = 3}, + [63] = {.index = 167, .length = 4}, + [64] = {.index = 171, .length = 3}, + [65] = {.index = 174, .length = 3}, + [66] = {.index = 177, .length = 3}, + [67] = {.index = 180, .length = 3}, + [68] = {.index = 183, .length = 4}, + [69] = {.index = 187, .length = 4}, + [70] = {.index = 191, .length = 4}, + [71] = {.index = 195, .length = 3}, + [72] = {.index = 198, .length = 4}, + [73] = {.index = 202, .length = 4}, + [74] = {.index = 206, .length = 4}, + [75] = {.index = 210, .length = 4}, + [76] = {.index = 214, .length = 4}, + [77] = {.index = 218, .length = 4}, + [78] = {.index = 222, .length = 4}, + [79] = {.index = 226, .length = 5}, + [80] = {.index = 231, .length = 4}, + [81] = {.index = 235, .length = 4}, + [82] = {.index = 239, .length = 5}, + [83] = {.index = 244, .length = 5}, + [84] = {.index = 249, .length = 5}, + [85] = {.index = 254, .length = 5}, + [86] = {.index = 259, .length = 5}, + [87] = {.index = 264, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1133,333 +1140,349 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_date, 0}, {field_txn, 1}, [4] = + {field_narration, 0}, + [5] = {field_headline, 0}, {field_subsection, 1, .inherited = true}, - [6] = + [7] = {field_subsection, 0, .inherited = true}, {field_subsection, 1, .inherited = true}, - [8] = + [9] = {field_account, 2}, {field_date, 0}, - [10] = + [11] = {field_currency, 2}, {field_date, 0}, - [12] = + [13] = {field_date, 0}, {field_name, 2}, - [14] = + [15] = + {field_narration, 1}, + {field_payee, 0}, + [17] = + {field_date, 0}, + {field_narration, 2, .inherited = true}, + {field_payee, 2, .inherited = true}, + {field_txn, 1}, + [21] = {field_date, 0}, {field_tags_links, 2}, {field_txn, 1}, - [17] = + [24] = {field_comment, 2}, {field_date, 0}, {field_txn, 1}, - [20] = + [27] = {field_key, 1}, {field_value, 2}, - [22] = + [29] = {field_item, 2}, - [23] = + [30] = {field_headline, 0}, {field_subsection, 2, .inherited = true}, - [25] = + [32] = {field_account, 2}, {field_date, 0}, {field_opt_booking, 3}, - [28] = + [35] = {field_account, 2}, {field_comment, 3}, {field_date, 0}, - [31] = + [38] = {field_account, 2}, {field_currencies, 3}, {field_date, 0}, - [34] = + [41] = {field_comment, 3}, {field_currency, 2}, {field_date, 0}, - [37] = + [44] = {field_account, 2}, {field_date, 0}, {field_from_account, 3}, - [40] = + [47] = {field_account, 2}, {field_amount, 3}, {field_date, 0}, - [43] = + [50] = {field_amount, 3}, {field_currency, 2}, {field_date, 0}, - [46] = + [53] = {field_date, 0}, {field_desc, 3}, {field_type, 2}, - [49] = + [56] = {field_date, 0}, {field_name, 2}, {field_query, 3}, - [52] = + [59] = {field_account, 2}, {field_date, 0}, {field_note, 3}, - [55] = + [62] = {field_account, 2}, {field_date, 0}, {field_filename, 3}, - [58] = + [65] = {field_custom_value_list, 3}, {field_date, 0}, {field_name, 2}, - [61] = + [68] = {field_date, 0}, + {field_narration, 2, .inherited = true}, + {field_payee, 2, .inherited = true}, {field_tags_links, 3}, {field_txn, 1}, - [64] = + [73] = {field_comment, 3}, {field_date, 0}, + {field_narration, 2, .inherited = true}, + {field_payee, 2, .inherited = true}, {field_txn, 1}, - [67] = + [78] = {field_comment, 3}, {field_date, 0}, {field_tags_links, 2}, {field_txn, 1}, - [71] = + [82] = {field_account, 2}, {field_comment, 4}, {field_date, 0}, {field_opt_booking, 3}, - [75] = + [86] = {field_account, 2}, {field_currencies, 3}, {field_date, 0}, {field_opt_booking, 4}, - [79] = + [90] = {field_account, 2}, {field_comment, 4}, {field_currencies, 3}, {field_date, 0}, - [83] = + [94] = {field_account, 2}, {field_comment, 4}, {field_date, 0}, {field_from_account, 3}, - [87] = + [98] = {field_account, 2}, {field_amount, 3}, {field_comment, 4}, {field_date, 0}, - [91] = + [102] = {field_account, 2}, {field_date, 0}, {field_filename, 3}, {field_tags_links, 4}, - [95] = + [106] = {field_account, 1}, - [96] = + [107] = {field_comment, 4}, {field_date, 0}, + {field_narration, 2, .inherited = true}, + {field_payee, 2, .inherited = true}, {field_tags_links, 3}, {field_txn, 1}, - [100] = + [113] = {field_account, 2}, {field_comment, 5}, {field_currencies, 3}, {field_date, 0}, {field_opt_booking, 4}, - [105] = + [118] = {field_currency, 0}, - [106] = + [119] = {field_per, 0}, - [107] = + [120] = {field_account, 1}, {field_amount, 2}, - [109] = + [122] = {field_account, 1}, {field_cost_spec, 2}, - [111] = + [124] = {field_account, 1}, {field_comment, 2}, - [113] = + [126] = {field_account, 2}, {field_optflag, 1}, - [115] = + [128] = {field_account, 1}, {field_price_annotation, 3}, - [117] = + [130] = {field_account, 1}, {field_comment, 3}, - [119] = + [132] = {field_currency, 1}, - [120] = + [133] = {field_currency, 1}, {field_per, 0}, - [122] = + [135] = {field_cost_comp_list, 1}, - [123] = + [136] = {field_account, 1}, {field_amount, 2}, {field_cost_spec, 3}, - [126] = + [139] = {field_account, 1}, {field_amount, 2}, {field_comment, 3}, - [129] = + [142] = {field_account, 1}, {field_comment, 3}, {field_cost_spec, 2}, - [132] = + [145] = {field_account, 2}, {field_amount, 3}, {field_optflag, 1}, - [135] = + [148] = {field_account, 2}, {field_cost_spec, 3}, {field_optflag, 1}, - [138] = + [151] = {field_account, 2}, {field_comment, 3}, {field_optflag, 1}, - [141] = + [154] = {field_account, 1}, {field_comment, 4}, {field_price_annotation, 3}, - [144] = + [157] = {field_currency, 2}, {field_total, 1}, - [146] = + [159] = {field_currency, 2}, {field_per, 0}, - [148] = + [161] = {field_account, 1}, {field_amount, 2}, {field_price_annotation, 4}, - [151] = + [164] = {field_account, 1}, {field_amount, 2}, {field_comment, 4}, - [154] = + [167] = {field_account, 1}, {field_amount, 2}, {field_comment, 4}, {field_cost_spec, 3}, - [158] = + [171] = {field_account, 1}, {field_cost_spec, 2}, {field_price_annotation, 4}, - [161] = + [174] = {field_account, 1}, {field_comment, 4}, {field_cost_spec, 2}, - [164] = + [177] = {field_account, 2}, {field_optflag, 1}, {field_price_annotation, 4}, - [167] = + [180] = {field_account, 2}, {field_comment, 4}, {field_optflag, 1}, - [170] = + [183] = {field_account, 2}, {field_amount, 3}, {field_cost_spec, 4}, {field_optflag, 1}, - [174] = + [187] = {field_account, 2}, {field_amount, 3}, {field_comment, 4}, {field_optflag, 1}, - [178] = + [191] = {field_account, 2}, {field_comment, 4}, {field_cost_spec, 3}, {field_optflag, 1}, - [182] = + [195] = {field_currency, 3}, {field_per, 0}, {field_total, 2}, - [185] = + [198] = {field_account, 1}, {field_amount, 2}, {field_comment, 5}, {field_price_annotation, 4}, - [189] = + [202] = {field_account, 1}, {field_amount, 2}, {field_cost_spec, 3}, {field_price_annotation, 5}, - [193] = + [206] = {field_account, 1}, {field_amount, 2}, {field_comment, 5}, {field_cost_spec, 3}, - [197] = + [210] = {field_account, 1}, {field_comment, 5}, {field_cost_spec, 2}, {field_price_annotation, 4}, - [201] = + [214] = {field_account, 2}, {field_comment, 5}, {field_optflag, 1}, {field_price_annotation, 4}, - [205] = + [218] = {field_account, 2}, {field_amount, 3}, {field_optflag, 1}, {field_price_annotation, 5}, - [209] = + [222] = {field_account, 2}, {field_amount, 3}, {field_comment, 5}, {field_optflag, 1}, - [213] = + [226] = {field_account, 2}, {field_amount, 3}, {field_comment, 5}, {field_cost_spec, 4}, {field_optflag, 1}, - [218] = + [231] = {field_account, 2}, {field_cost_spec, 3}, {field_optflag, 1}, {field_price_annotation, 5}, - [222] = + [235] = {field_account, 2}, {field_comment, 5}, {field_cost_spec, 3}, {field_optflag, 1}, - [226] = + [239] = {field_account, 1}, {field_amount, 2}, {field_comment, 6}, {field_cost_spec, 3}, {field_price_annotation, 5}, - [231] = + [244] = {field_account, 2}, {field_amount, 3}, {field_comment, 6}, {field_optflag, 1}, {field_price_annotation, 5}, - [236] = + [249] = {field_account, 2}, {field_amount, 3}, {field_cost_spec, 4}, {field_optflag, 1}, {field_price_annotation, 6}, - [241] = + [254] = {field_account, 2}, {field_amount, 3}, {field_comment, 6}, {field_cost_spec, 4}, {field_optflag, 1}, - [246] = + [259] = {field_account, 2}, {field_comment, 6}, {field_cost_spec, 3}, {field_optflag, 1}, {field_price_annotation, 5}, - [251] = + [264] = {field_account, 2}, {field_amount, 3}, {field_comment, 7}, @@ -6630,14 +6653,14 @@ static const uint16_t ts_small_parse_table[] = { [990] = 4, ACTIONS(158), 1, sym__indent, - ACTIONS(198), 2, + ACTIONS(202), 2, sym__stars, ts_builtin_sym_end, STATE(27), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(200), 14, + ACTIONS(204), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6730,14 +6753,14 @@ static const uint16_t ts_small_parse_table[] = { [1106] = 4, ACTIONS(158), 1, sym__indent, - ACTIONS(202), 2, + ACTIONS(206), 2, sym__stars, ts_builtin_sym_end, STATE(23), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(204), 14, + ACTIONS(208), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6753,16 +6776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1135] = 4, - ACTIONS(210), 1, + ACTIONS(214), 1, sym__indent, - ACTIONS(206), 2, + ACTIONS(210), 2, sym__stars, ts_builtin_sym_end, STATE(27), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(208), 14, + ACTIONS(212), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6780,14 +6803,14 @@ static const uint16_t ts_small_parse_table[] = { [1164] = 4, ACTIONS(158), 1, sym__indent, - ACTIONS(213), 2, + ACTIONS(217), 2, sym__stars, ts_builtin_sym_end, STATE(27), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(215), 14, + ACTIONS(219), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6805,14 +6828,14 @@ static const uint16_t ts_small_parse_table[] = { [1193] = 4, ACTIONS(184), 1, sym__indent, - ACTIONS(219), 2, + ACTIONS(223), 2, sym__stars, sym__sectionend, STATE(30), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(217), 14, + ACTIONS(221), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6830,14 +6853,14 @@ static const uint16_t ts_small_parse_table[] = { [1222] = 4, ACTIONS(184), 1, sym__indent, - ACTIONS(198), 2, + ACTIONS(202), 2, sym__stars, sym__sectionend, STATE(36), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(200), 14, + ACTIONS(204), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6930,14 +6953,14 @@ static const uint16_t ts_small_parse_table[] = { [1338] = 4, ACTIONS(184), 1, sym__indent, - ACTIONS(202), 2, + ACTIONS(206), 2, sym__stars, sym__sectionend, STATE(19), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(204), 14, + ACTIONS(208), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6955,14 +6978,14 @@ static const uint16_t ts_small_parse_table[] = { [1367] = 4, ACTIONS(184), 1, sym__indent, - ACTIONS(223), 2, + ACTIONS(227), 2, sym__stars, sym__sectionend, STATE(36), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(221), 14, + ACTIONS(225), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -6978,16 +7001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1396] = 4, - ACTIONS(225), 1, + ACTIONS(229), 1, sym__indent, - ACTIONS(206), 2, + ACTIONS(210), 2, sym__stars, sym__sectionend, STATE(36), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(208), 14, + ACTIONS(212), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7005,14 +7028,14 @@ static const uint16_t ts_small_parse_table[] = { [1425] = 4, ACTIONS(158), 1, sym__indent, - ACTIONS(223), 2, + ACTIONS(227), 2, sym__stars, ts_builtin_sym_end, STATE(27), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(221), 14, + ACTIONS(225), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7030,14 +7053,14 @@ static const uint16_t ts_small_parse_table[] = { [1454] = 4, ACTIONS(184), 1, sym__indent, - ACTIONS(213), 2, + ACTIONS(217), 2, sym__stars, sym__sectionend, STATE(36), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(215), 14, + ACTIONS(219), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7055,14 +7078,14 @@ static const uint16_t ts_small_parse_table[] = { [1483] = 4, ACTIONS(158), 1, sym__indent, - ACTIONS(219), 2, + ACTIONS(223), 2, sym__stars, ts_builtin_sym_end, STATE(22), 3, sym_posting, sym__key_value_line, aux_sym_transaction_repeat1, - ACTIONS(217), 14, + ACTIONS(221), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7153,15 +7176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1599] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(232), 2, + ACTIONS(236), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(228), 14, + ACTIONS(232), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7177,15 +7200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1627] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(234), 2, + ACTIONS(238), 2, sym__stars, ts_builtin_sym_end, STATE(134), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(236), 14, + ACTIONS(240), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7201,15 +7224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1655] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(240), 2, + ACTIONS(244), 2, sym__stars, ts_builtin_sym_end, STATE(98), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(242), 14, + ACTIONS(246), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7225,15 +7248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1683] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(246), 2, + ACTIONS(250), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(244), 14, + ACTIONS(248), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7249,15 +7272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1711] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(250), 2, + ACTIONS(254), 2, sym__stars, sym__sectionend, STATE(118), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(248), 14, + ACTIONS(252), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7273,15 +7296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1739] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(254), 2, + ACTIONS(258), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(252), 14, + ACTIONS(256), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7297,15 +7320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1767] = 4, - ACTIONS(258), 1, + ACTIONS(262), 1, sym__indent, - ACTIONS(261), 2, + ACTIONS(265), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(256), 14, + ACTIONS(260), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7321,15 +7344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1795] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(265), 2, + ACTIONS(269), 2, sym__stars, sym__sectionend, STATE(117), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(263), 14, + ACTIONS(267), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7345,15 +7368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1823] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(269), 2, + ACTIONS(273), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(267), 14, + ACTIONS(271), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7369,15 +7392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1851] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(273), 2, + ACTIONS(277), 2, sym__stars, sym__sectionend, STATE(115), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(271), 14, + ACTIONS(275), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7393,15 +7416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1879] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(277), 2, + ACTIONS(281), 2, sym__stars, sym__sectionend, STATE(113), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(275), 14, + ACTIONS(279), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7417,15 +7440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1907] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(281), 2, + ACTIONS(285), 2, sym__stars, sym__sectionend, STATE(90), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(279), 14, + ACTIONS(283), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7441,15 +7464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1935] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(240), 2, + ACTIONS(244), 2, sym__stars, sym__sectionend, STATE(89), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(242), 14, + ACTIONS(246), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7465,15 +7488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1963] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(285), 2, + ACTIONS(289), 2, sym__stars, sym__sectionend, STATE(88), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(283), 14, + ACTIONS(287), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7489,15 +7512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [1991] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(289), 2, + ACTIONS(293), 2, sym__stars, sym__sectionend, STATE(82), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(287), 14, + ACTIONS(291), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7513,15 +7536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2019] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(293), 2, + ACTIONS(297), 2, sym__stars, sym__sectionend, STATE(75), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(291), 14, + ACTIONS(295), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7537,15 +7560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2047] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(297), 2, + ACTIONS(301), 2, sym__stars, sym__sectionend, STATE(70), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(295), 14, + ACTIONS(299), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7561,15 +7584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2075] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(301), 2, + ACTIONS(305), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(299), 14, + ACTIONS(303), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7585,15 +7608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2103] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(305), 2, + ACTIONS(309), 2, sym__stars, sym__sectionend, STATE(69), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(303), 14, + ACTIONS(307), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7609,15 +7632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2131] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(309), 2, + ACTIONS(313), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(307), 14, + ACTIONS(311), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7633,15 +7656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2159] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(313), 2, + ACTIONS(317), 2, sym__stars, sym__sectionend, STATE(43), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(311), 14, + ACTIONS(315), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7657,15 +7680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2187] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(317), 2, + ACTIONS(321), 2, sym__stars, sym__sectionend, STATE(46), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(315), 14, + ACTIONS(319), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7681,15 +7704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2215] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(321), 2, + ACTIONS(325), 2, sym__stars, sym__sectionend, STATE(48), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(319), 14, + ACTIONS(323), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7705,15 +7728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2243] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(325), 2, + ACTIONS(329), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(323), 14, + ACTIONS(327), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7729,15 +7752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2271] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(329), 2, + ACTIONS(333), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(327), 14, + ACTIONS(331), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7753,15 +7776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2299] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(333), 2, + ACTIONS(337), 2, sym__stars, sym__sectionend, STATE(121), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(331), 14, + ACTIONS(335), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7777,15 +7800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2327] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(337), 2, + ACTIONS(341), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(335), 14, + ACTIONS(339), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7801,15 +7824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2355] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(341), 2, + ACTIONS(345), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(339), 14, + ACTIONS(343), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7825,15 +7848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2383] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(345), 2, + ACTIONS(349), 2, sym__stars, sym__sectionend, STATE(51), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(343), 14, + ACTIONS(347), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7849,15 +7872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2411] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(349), 2, + ACTIONS(353), 2, sym__stars, sym__sectionend, STATE(60), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(347), 14, + ACTIONS(351), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7873,15 +7896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2439] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(234), 2, + ACTIONS(238), 2, sym__stars, sym__sectionend, STATE(62), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(236), 14, + ACTIONS(240), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7897,15 +7920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2467] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(353), 2, + ACTIONS(357), 2, sym__stars, sym__sectionend, STATE(66), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(351), 14, + ACTIONS(355), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7921,15 +7944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2495] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(357), 2, + ACTIONS(361), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(355), 14, + ACTIONS(359), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7945,15 +7968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2523] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(329), 2, + ACTIONS(333), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(327), 14, + ACTIONS(331), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7969,15 +7992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2551] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(361), 2, + ACTIONS(365), 2, sym__stars, sym__sectionend, STATE(122), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(359), 14, + ACTIONS(363), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -7993,15 +8016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2579] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(363), 2, + ACTIONS(367), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(365), 14, + ACTIONS(369), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8017,15 +8040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2607] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(367), 2, + ACTIONS(371), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(369), 14, + ACTIONS(373), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8041,15 +8064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2635] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(371), 2, + ACTIONS(375), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(373), 14, + ACTIONS(377), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8065,15 +8088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2663] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(375), 2, + ACTIONS(379), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(377), 14, + ACTIONS(381), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8089,15 +8112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2691] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(381), 2, + ACTIONS(385), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(379), 14, + ACTIONS(383), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8113,15 +8136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2719] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(383), 2, + ACTIONS(387), 2, sym__stars, ts_builtin_sym_end, STATE(76), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(385), 14, + ACTIONS(389), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8137,15 +8160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2747] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(387), 2, + ACTIONS(391), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(389), 14, + ACTIONS(393), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8161,15 +8184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2775] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(391), 2, + ACTIONS(395), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(393), 14, + ACTIONS(397), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8185,15 +8208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2803] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(353), 2, + ACTIONS(357), 2, sym__stars, ts_builtin_sym_end, STATE(130), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(351), 14, + ACTIONS(355), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8209,15 +8232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2831] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(397), 2, + ACTIONS(401), 2, sym__stars, sym__sectionend, STATE(123), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(395), 14, + ACTIONS(399), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8233,15 +8256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2859] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(401), 2, + ACTIONS(405), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(399), 14, + ACTIONS(403), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8257,15 +8280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2887] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(405), 2, + ACTIONS(409), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(403), 14, + ACTIONS(407), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8281,15 +8304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2915] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(409), 2, + ACTIONS(413), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(407), 14, + ACTIONS(411), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8305,15 +8328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2943] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(411), 2, + ACTIONS(415), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(413), 14, + ACTIONS(417), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8329,15 +8352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2971] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(417), 2, + ACTIONS(421), 2, sym__stars, sym__sectionend, STATE(119), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(415), 14, + ACTIONS(419), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8353,15 +8376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [2999] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(419), 2, + ACTIONS(423), 2, sym__stars, ts_builtin_sym_end, STATE(78), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(421), 14, + ACTIONS(425), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8377,15 +8400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3027] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(349), 2, + ACTIONS(353), 2, sym__stars, ts_builtin_sym_end, STATE(136), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(347), 14, + ACTIONS(351), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8401,15 +8424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3055] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(423), 2, + ACTIONS(427), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(425), 14, + ACTIONS(429), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8425,15 +8448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3083] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(427), 2, + ACTIONS(431), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(429), 14, + ACTIONS(433), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8449,15 +8472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3111] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(409), 2, + ACTIONS(413), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(407), 14, + ACTIONS(411), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8473,15 +8496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3139] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(405), 2, + ACTIONS(409), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(403), 14, + ACTIONS(407), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8497,15 +8520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3167] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(401), 2, + ACTIONS(405), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(399), 14, + ACTIONS(403), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8521,15 +8544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3195] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(397), 2, + ACTIONS(401), 2, sym__stars, ts_builtin_sym_end, STATE(79), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(395), 14, + ACTIONS(399), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8545,15 +8568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3223] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(381), 2, + ACTIONS(385), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(379), 14, + ACTIONS(383), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8569,15 +8592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3251] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(361), 2, + ACTIONS(365), 2, sym__stars, ts_builtin_sym_end, STATE(80), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(359), 14, + ACTIONS(363), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8593,15 +8616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3279] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(357), 2, + ACTIONS(361), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(355), 14, + ACTIONS(359), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8617,15 +8640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3307] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(341), 2, + ACTIONS(345), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(339), 14, + ACTIONS(343), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8641,15 +8664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3335] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(337), 2, + ACTIONS(341), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(335), 14, + ACTIONS(339), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8665,15 +8688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3363] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(333), 2, + ACTIONS(337), 2, sym__stars, ts_builtin_sym_end, STATE(81), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(331), 14, + ACTIONS(335), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8689,15 +8712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3391] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(417), 2, + ACTIONS(421), 2, sym__stars, ts_builtin_sym_end, STATE(84), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(415), 14, + ACTIONS(419), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8713,15 +8736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3419] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(345), 2, + ACTIONS(349), 2, sym__stars, ts_builtin_sym_end, STATE(126), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(343), 14, + ACTIONS(347), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8737,15 +8760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3447] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(232), 2, + ACTIONS(236), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(228), 14, + ACTIONS(232), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8761,15 +8784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3475] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(246), 2, + ACTIONS(250), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(244), 14, + ACTIONS(248), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8785,15 +8808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3503] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(250), 2, + ACTIONS(254), 2, sym__stars, ts_builtin_sym_end, STATE(85), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(248), 14, + ACTIONS(252), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8809,15 +8832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3531] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(254), 2, + ACTIONS(258), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(252), 14, + ACTIONS(256), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8833,15 +8856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3559] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(427), 2, + ACTIONS(431), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(429), 14, + ACTIONS(433), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8857,15 +8880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3587] = 4, - ACTIONS(431), 1, + ACTIONS(435), 1, sym__indent, - ACTIONS(261), 2, + ACTIONS(265), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(256), 14, + ACTIONS(260), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8881,15 +8904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3615] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(423), 2, + ACTIONS(427), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(425), 14, + ACTIONS(429), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8905,15 +8928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3643] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(419), 2, + ACTIONS(423), 2, sym__stars, sym__sectionend, STATE(124), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(421), 14, + ACTIONS(425), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8929,15 +8952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3671] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(411), 2, + ACTIONS(415), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(413), 14, + ACTIONS(417), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8953,15 +8976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3699] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(391), 2, + ACTIONS(395), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(393), 14, + ACTIONS(397), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -8977,15 +9000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3727] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(387), 2, + ACTIONS(391), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(389), 14, + ACTIONS(393), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9001,15 +9024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3755] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(383), 2, + ACTIONS(387), 2, sym__stars, sym__sectionend, STATE(67), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(385), 14, + ACTIONS(389), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9025,15 +9048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3783] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(375), 2, + ACTIONS(379), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(377), 14, + ACTIONS(381), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9049,15 +9072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3811] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(371), 2, + ACTIONS(375), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(373), 14, + ACTIONS(377), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9073,15 +9096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3839] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(367), 2, + ACTIONS(371), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(369), 14, + ACTIONS(373), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9097,15 +9120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3867] = 4, - ACTIONS(230), 1, + ACTIONS(234), 1, sym__indent, - ACTIONS(363), 2, + ACTIONS(367), 2, sym__stars, sym__sectionend, STATE(49), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(365), 14, + ACTIONS(369), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9121,15 +9144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3895] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(265), 2, + ACTIONS(269), 2, sym__stars, ts_builtin_sym_end, STATE(91), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(263), 14, + ACTIONS(267), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9145,15 +9168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3923] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(269), 2, + ACTIONS(273), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(267), 14, + ACTIONS(271), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9169,15 +9192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3951] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(273), 2, + ACTIONS(277), 2, sym__stars, ts_builtin_sym_end, STATE(95), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(271), 14, + ACTIONS(275), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9193,15 +9216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [3979] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(277), 2, + ACTIONS(281), 2, sym__stars, ts_builtin_sym_end, STATE(96), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(275), 14, + ACTIONS(279), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9217,15 +9240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4007] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(281), 2, + ACTIONS(285), 2, sym__stars, ts_builtin_sym_end, STATE(97), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(279), 14, + ACTIONS(283), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9241,15 +9264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4035] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(325), 2, + ACTIONS(329), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(323), 14, + ACTIONS(327), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9265,15 +9288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4063] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(321), 2, + ACTIONS(325), 2, sym__stars, ts_builtin_sym_end, STATE(112), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(319), 14, + ACTIONS(323), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9289,15 +9312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4091] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(317), 2, + ACTIONS(321), 2, sym__stars, ts_builtin_sym_end, STATE(110), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(315), 14, + ACTIONS(319), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9313,15 +9336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4119] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(313), 2, + ACTIONS(317), 2, sym__stars, ts_builtin_sym_end, STATE(109), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(311), 14, + ACTIONS(315), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9337,15 +9360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4147] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(309), 2, + ACTIONS(313), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(307), 14, + ACTIONS(311), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9361,15 +9384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4175] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(305), 2, + ACTIONS(309), 2, sym__stars, ts_builtin_sym_end, STATE(105), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(303), 14, + ACTIONS(307), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9385,15 +9408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4203] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(301), 2, + ACTIONS(305), 2, sym__stars, ts_builtin_sym_end, STATE(114), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(299), 14, + ACTIONS(303), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9409,15 +9432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4231] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(297), 2, + ACTIONS(301), 2, sym__stars, ts_builtin_sym_end, STATE(104), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(295), 14, + ACTIONS(299), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9433,15 +9456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4259] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(293), 2, + ACTIONS(297), 2, sym__stars, ts_builtin_sym_end, STATE(103), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(291), 14, + ACTIONS(295), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9457,15 +9480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4287] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(289), 2, + ACTIONS(293), 2, sym__stars, ts_builtin_sym_end, STATE(101), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(287), 14, + ACTIONS(291), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9481,15 +9504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4315] = 4, - ACTIONS(238), 1, + ACTIONS(242), 1, sym__indent, - ACTIONS(285), 2, + ACTIONS(289), 2, sym__stars, ts_builtin_sym_end, STATE(99), 2, sym__key_value_line, aux_sym__key_value_list, - ACTIONS(283), 14, + ACTIONS(287), 14, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9505,10 +9528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4343] = 2, - ACTIONS(436), 2, + ACTIONS(440), 2, sym__stars, sym__sectionend, - ACTIONS(434), 15, + ACTIONS(438), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9525,26 +9548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4365] = 2, - ACTIONS(438), 2, - sym__stars, - ts_builtin_sym_end, - ACTIONS(440), 15, - anon_sym_LF, - anon_sym_CR, - sym__eol, - sym__indent, - sym_flag, - sym_date, - anon_sym_COLON, - anon_sym_pushtag, - anon_sym_poptag, - anon_sym_pushmeta, - anon_sym_popmeta, - anon_sym_option, - anon_sym_include, - anon_sym_plugin, - anon_sym_SEMI, - [4387] = 2, ACTIONS(442), 2, sym__stars, ts_builtin_sym_end, @@ -9564,7 +9567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4409] = 2, + [4387] = 2, ACTIONS(446), 2, sym__stars, ts_builtin_sym_end, @@ -9584,7 +9587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4431] = 2, + [4409] = 2, ACTIONS(450), 2, sym__stars, ts_builtin_sym_end, @@ -9604,7 +9607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4453] = 2, + [4431] = 2, ACTIONS(454), 2, sym__stars, ts_builtin_sym_end, @@ -9624,7 +9627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4475] = 2, + [4453] = 2, ACTIONS(458), 2, sym__stars, ts_builtin_sym_end, @@ -9644,7 +9647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4497] = 2, + [4475] = 2, ACTIONS(462), 2, sym__stars, ts_builtin_sym_end, @@ -9664,7 +9667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4519] = 2, + [4497] = 2, ACTIONS(466), 2, sym__stars, ts_builtin_sym_end, @@ -9684,7 +9687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4541] = 2, + [4519] = 2, ACTIONS(470), 2, sym__stars, ts_builtin_sym_end, @@ -9704,7 +9707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4563] = 2, + [4541] = 2, ACTIONS(474), 2, sym__stars, ts_builtin_sym_end, @@ -9724,7 +9727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4585] = 2, + [4563] = 2, ACTIONS(478), 2, sym__stars, ts_builtin_sym_end, @@ -9744,7 +9747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4607] = 2, + [4585] = 2, ACTIONS(482), 2, sym__stars, ts_builtin_sym_end, @@ -9764,7 +9767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4629] = 2, + [4607] = 2, ACTIONS(486), 2, sym__stars, ts_builtin_sym_end, @@ -9784,7 +9787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4651] = 2, + [4629] = 2, ACTIONS(490), 2, sym__stars, ts_builtin_sym_end, @@ -9804,7 +9807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4673] = 2, + [4651] = 2, ACTIONS(494), 2, sym__stars, ts_builtin_sym_end, @@ -9824,7 +9827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4695] = 2, + [4673] = 2, ACTIONS(498), 2, sym__stars, ts_builtin_sym_end, @@ -9844,7 +9847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4717] = 2, + [4695] = 2, ACTIONS(502), 2, sym__stars, ts_builtin_sym_end, @@ -9864,7 +9867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4739] = 2, + [4717] = 2, ACTIONS(506), 2, sym__stars, ts_builtin_sym_end, @@ -9884,7 +9887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, - [4761] = 2, + [4739] = 2, ACTIONS(510), 2, sym__stars, ts_builtin_sym_end, @@ -9904,23 +9907,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_plugin, anon_sym_SEMI, + [4761] = 2, + ACTIONS(514), 2, + sym__stars, + ts_builtin_sym_end, + ACTIONS(516), 15, + anon_sym_LF, + anon_sym_CR, + sym__eol, + sym__indent, + sym_flag, + sym_date, + anon_sym_COLON, + anon_sym_pushtag, + anon_sym_poptag, + anon_sym_pushmeta, + anon_sym_popmeta, + anon_sym_option, + anon_sym_include, + anon_sym_plugin, + anon_sym_SEMI, [4783] = 8, - ACTIONS(520), 1, + ACTIONS(524), 1, sym_number, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, STATE(520), 1, sym_amount, STATE(533), 1, sym_value, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, - ACTIONS(516), 3, + ACTIONS(520), 3, sym__none, sym_bool, sym_currency, - ACTIONS(518), 4, + ACTIONS(522), 4, sym_date, sym_account, sym_string, @@ -9931,10 +9954,10 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [4817] = 2, - ACTIONS(524), 2, + ACTIONS(528), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(526), 15, + ACTIONS(530), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9951,10 +9974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4839] = 2, - ACTIONS(528), 2, + ACTIONS(532), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(530), 15, + ACTIONS(534), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9971,10 +9994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4861] = 2, - ACTIONS(532), 2, + ACTIONS(536), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(534), 15, + ACTIONS(538), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -9991,10 +10014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4883] = 2, - ACTIONS(536), 2, + ACTIONS(540), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(538), 15, + ACTIONS(542), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10011,10 +10034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4905] = 2, - ACTIONS(206), 2, + ACTIONS(210), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(208), 15, + ACTIONS(212), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10031,21 +10054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [4927] = 13, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(544), 1, sym__eol, - ACTIONS(542), 1, + ACTIONS(546), 1, sym_atat, - ACTIONS(544), 1, + ACTIONS(548), 1, sym_at, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, STATE(332), 1, sym_incomplete_amount, @@ -10053,7 +10076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cost_spec, STATE(553), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -10062,21 +10085,21 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [4971] = 13, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(554), 1, + ACTIONS(558), 1, sym__eol, - ACTIONS(556), 1, + ACTIONS(560), 1, sym_atat, - ACTIONS(558), 1, + ACTIONS(562), 1, sym_at, STATE(337), 1, sym_incomplete_amount, @@ -10084,7 +10107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cost_spec, STATE(474), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -10093,10 +10116,10 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [5015] = 2, - ACTIONS(436), 2, + ACTIONS(440), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(434), 15, + ACTIONS(438), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10113,10 +10136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5037] = 2, - ACTIONS(560), 2, + ACTIONS(564), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(562), 15, + ACTIONS(566), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10133,21 +10156,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5059] = 13, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(564), 1, + ACTIONS(568), 1, sym__eol, - ACTIONS(566), 1, + ACTIONS(570), 1, sym_atat, - ACTIONS(568), 1, + ACTIONS(572), 1, sym_at, STATE(339), 1, sym_incomplete_amount, @@ -10155,7 +10178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cost_spec, STATE(541), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -10164,10 +10187,10 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [5103] = 2, - ACTIONS(570), 2, + ACTIONS(574), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(572), 15, + ACTIONS(576), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10184,10 +10207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5125] = 2, - ACTIONS(574), 2, + ACTIONS(578), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(576), 15, + ACTIONS(580), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10204,10 +10227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5147] = 2, - ACTIONS(578), 2, + ACTIONS(582), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(580), 15, + ACTIONS(584), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10224,10 +10247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5169] = 2, - ACTIONS(582), 2, + ACTIONS(586), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(584), 15, + ACTIONS(588), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10244,10 +10267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5191] = 2, - ACTIONS(586), 2, + ACTIONS(590), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(588), 15, + ACTIONS(592), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10264,10 +10287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5213] = 2, - ACTIONS(590), 2, + ACTIONS(594), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(592), 15, + ACTIONS(596), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10284,10 +10307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5235] = 2, - ACTIONS(594), 2, + ACTIONS(598), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(596), 15, + ACTIONS(600), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10304,10 +10327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5257] = 2, - ACTIONS(598), 2, + ACTIONS(602), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(600), 15, + ACTIONS(604), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10324,10 +10347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5279] = 2, - ACTIONS(261), 2, + ACTIONS(265), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(256), 15, + ACTIONS(260), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10344,10 +10367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5301] = 2, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(604), 15, + ACTIONS(608), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10364,10 +10387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5323] = 2, - ACTIONS(206), 2, + ACTIONS(210), 2, sym__stars, sym__sectionend, - ACTIONS(208), 15, + ACTIONS(212), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10384,10 +10407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5345] = 2, - ACTIONS(606), 2, + ACTIONS(610), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(608), 15, + ACTIONS(612), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10404,10 +10427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5367] = 2, - ACTIONS(442), 2, + ACTIONS(446), 2, sym__stars, sym__sectionend, - ACTIONS(444), 15, + ACTIONS(448), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10424,10 +10447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5389] = 2, - ACTIONS(261), 2, + ACTIONS(265), 2, sym__stars, sym__sectionend, - ACTIONS(256), 15, + ACTIONS(260), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10444,10 +10467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5411] = 2, - ACTIONS(610), 2, + ACTIONS(614), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(612), 15, + ACTIONS(616), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10464,10 +10487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5433] = 2, - ACTIONS(614), 2, + ACTIONS(618), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(616), 15, + ACTIONS(620), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10484,10 +10507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5455] = 2, - ACTIONS(618), 2, + ACTIONS(622), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(620), 15, + ACTIONS(624), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10504,10 +10527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5477] = 2, - ACTIONS(446), 2, + ACTIONS(450), 2, sym__stars, sym__sectionend, - ACTIONS(448), 15, + ACTIONS(452), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10524,10 +10547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5499] = 2, - ACTIONS(450), 2, + ACTIONS(454), 2, sym__stars, sym__sectionend, - ACTIONS(452), 15, + ACTIONS(456), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10544,10 +10567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5521] = 2, - ACTIONS(454), 2, + ACTIONS(458), 2, sym__stars, sym__sectionend, - ACTIONS(456), 15, + ACTIONS(460), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10564,10 +10587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5543] = 2, - ACTIONS(458), 2, + ACTIONS(462), 2, sym__stars, sym__sectionend, - ACTIONS(460), 15, + ACTIONS(464), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10584,10 +10607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5565] = 2, - ACTIONS(462), 2, + ACTIONS(466), 2, sym__stars, sym__sectionend, - ACTIONS(464), 15, + ACTIONS(468), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10604,10 +10627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5587] = 2, - ACTIONS(466), 2, + ACTIONS(470), 2, sym__stars, sym__sectionend, - ACTIONS(468), 15, + ACTIONS(472), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10624,10 +10647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5609] = 2, - ACTIONS(622), 2, + ACTIONS(626), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(624), 15, + ACTIONS(628), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10644,10 +10667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5631] = 2, - ACTIONS(626), 2, + ACTIONS(630), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(628), 15, + ACTIONS(632), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10664,10 +10687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5653] = 2, - ACTIONS(632), 2, + ACTIONS(636), 2, sym__stars, sym__sectionend, - ACTIONS(630), 15, + ACTIONS(634), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10684,10 +10707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5675] = 2, - ACTIONS(470), 2, + ACTIONS(474), 2, sym__stars, sym__sectionend, - ACTIONS(472), 15, + ACTIONS(476), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10704,10 +10727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5697] = 2, - ACTIONS(474), 2, + ACTIONS(478), 2, sym__stars, sym__sectionend, - ACTIONS(476), 15, + ACTIONS(480), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10724,10 +10747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5719] = 2, - ACTIONS(478), 2, + ACTIONS(482), 2, sym__stars, sym__sectionend, - ACTIONS(480), 15, + ACTIONS(484), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10744,10 +10767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5741] = 2, - ACTIONS(482), 2, + ACTIONS(486), 2, sym__stars, sym__sectionend, - ACTIONS(484), 15, + ACTIONS(488), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10764,10 +10787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5763] = 2, - ACTIONS(636), 2, + ACTIONS(640), 2, sym__stars, sym__sectionend, - ACTIONS(634), 15, + ACTIONS(638), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10784,10 +10807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5785] = 2, - ACTIONS(638), 2, + ACTIONS(642), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(640), 15, + ACTIONS(644), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10804,10 +10827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5807] = 2, - ACTIONS(644), 2, + ACTIONS(648), 2, sym__stars, sym__sectionend, - ACTIONS(642), 15, + ACTIONS(646), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10824,10 +10847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5829] = 2, - ACTIONS(486), 2, + ACTIONS(490), 2, sym__stars, sym__sectionend, - ACTIONS(488), 15, + ACTIONS(492), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10844,10 +10867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5851] = 2, - ACTIONS(490), 2, + ACTIONS(494), 2, sym__stars, sym__sectionend, - ACTIONS(492), 15, + ACTIONS(496), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10864,10 +10887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5873] = 2, - ACTIONS(494), 2, + ACTIONS(498), 2, sym__stars, sym__sectionend, - ACTIONS(496), 15, + ACTIONS(500), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10884,10 +10907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5895] = 2, - ACTIONS(632), 2, + ACTIONS(636), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(630), 15, + ACTIONS(634), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10904,10 +10927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5917] = 2, - ACTIONS(648), 2, + ACTIONS(652), 2, sym__stars, sym__sectionend, - ACTIONS(646), 15, + ACTIONS(650), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -10924,15 +10947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [5939] = 11, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(656), 1, sym_currency, - ACTIONS(654), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(656), 1, + ACTIONS(660), 1, anon_sym_POUND, - ACTIONS(658), 1, + ACTIONS(662), 1, anon_sym_RBRACE, STATE(385), 1, sym_cost_comp, @@ -10940,10 +10963,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_amount, STATE(470), 1, sym__cost_comp_list, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, - ACTIONS(650), 3, + ACTIONS(654), 3, anon_sym_STAR, sym_date, sym_string, @@ -10953,15 +10976,15 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [5979] = 11, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(656), 1, sym_currency, - ACTIONS(654), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(656), 1, + ACTIONS(660), 1, anon_sym_POUND, - ACTIONS(658), 1, + ACTIONS(662), 1, anon_sym_RBRACE_RBRACE, STATE(385), 1, sym_cost_comp, @@ -10969,10 +10992,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_amount, STATE(469), 1, sym__cost_comp_list, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, - ACTIONS(650), 3, + ACTIONS(654), 3, anon_sym_STAR, sym_date, sym_string, @@ -10982,10 +11005,10 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [6019] = 2, - ACTIONS(498), 2, + ACTIONS(502), 2, sym__stars, sym__sectionend, - ACTIONS(500), 15, + ACTIONS(504), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11002,10 +11025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6041] = 2, - ACTIONS(438), 2, + ACTIONS(442), 2, sym__stars, sym__sectionend, - ACTIONS(440), 15, + ACTIONS(444), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11022,10 +11045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6063] = 2, - ACTIONS(502), 2, + ACTIONS(506), 2, sym__stars, sym__sectionend, - ACTIONS(504), 15, + ACTIONS(508), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11042,10 +11065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6085] = 2, - ACTIONS(506), 2, + ACTIONS(510), 2, sym__stars, sym__sectionend, - ACTIONS(508), 15, + ACTIONS(512), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11062,10 +11085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6107] = 2, - ACTIONS(636), 2, + ACTIONS(640), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(634), 15, + ACTIONS(638), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11082,21 +11105,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6129] = 13, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(660), 1, + ACTIONS(664), 1, sym__eol, - ACTIONS(662), 1, + ACTIONS(666), 1, sym_atat, - ACTIONS(664), 1, + ACTIONS(668), 1, sym_at, STATE(340), 1, sym_incomplete_amount, @@ -11104,7 +11127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cost_spec, STATE(466), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -11113,10 +11136,10 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [6173] = 2, - ACTIONS(644), 2, + ACTIONS(648), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(642), 15, + ACTIONS(646), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11133,10 +11156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6195] = 2, - ACTIONS(666), 2, + ACTIONS(670), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(668), 15, + ACTIONS(672), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11153,10 +11176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6217] = 2, - ACTIONS(510), 2, + ACTIONS(514), 2, sym__stars, sym__sectionend, - ACTIONS(512), 15, + ACTIONS(516), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11173,10 +11196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6239] = 2, - ACTIONS(524), 2, + ACTIONS(528), 2, sym__stars, sym__sectionend, - ACTIONS(526), 15, + ACTIONS(530), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11193,10 +11216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6261] = 2, - ACTIONS(528), 2, + ACTIONS(532), 2, sym__stars, sym__sectionend, - ACTIONS(530), 15, + ACTIONS(534), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11213,10 +11236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6283] = 2, - ACTIONS(532), 2, + ACTIONS(536), 2, sym__stars, sym__sectionend, - ACTIONS(534), 15, + ACTIONS(538), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11233,10 +11256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6305] = 2, - ACTIONS(536), 2, + ACTIONS(540), 2, sym__stars, sym__sectionend, - ACTIONS(538), 15, + ACTIONS(542), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11253,10 +11276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6327] = 2, - ACTIONS(672), 2, + ACTIONS(676), 2, sym__stars, sym__sectionend, - ACTIONS(670), 15, + ACTIONS(674), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11273,10 +11296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6349] = 2, - ACTIONS(560), 2, + ACTIONS(564), 2, sym__stars, sym__sectionend, - ACTIONS(562), 15, + ACTIONS(566), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11293,10 +11316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6371] = 2, - ACTIONS(674), 2, + ACTIONS(678), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(676), 15, + ACTIONS(680), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11313,10 +11336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6393] = 2, - ACTIONS(570), 2, + ACTIONS(574), 2, sym__stars, sym__sectionend, - ACTIONS(572), 15, + ACTIONS(576), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11333,10 +11356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6415] = 2, - ACTIONS(574), 2, + ACTIONS(578), 2, sym__stars, sym__sectionend, - ACTIONS(576), 15, + ACTIONS(580), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11353,10 +11376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6437] = 2, - ACTIONS(578), 2, + ACTIONS(582), 2, sym__stars, sym__sectionend, - ACTIONS(580), 15, + ACTIONS(584), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11373,10 +11396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6459] = 2, - ACTIONS(648), 2, + ACTIONS(652), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(646), 15, + ACTIONS(650), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11393,10 +11416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6481] = 2, - ACTIONS(582), 2, + ACTIONS(586), 2, sym__stars, sym__sectionend, - ACTIONS(584), 15, + ACTIONS(588), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11413,10 +11436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6503] = 2, - ACTIONS(586), 2, + ACTIONS(590), 2, sym__stars, sym__sectionend, - ACTIONS(588), 15, + ACTIONS(592), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11433,10 +11456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6525] = 2, - ACTIONS(590), 2, + ACTIONS(594), 2, sym__stars, sym__sectionend, - ACTIONS(592), 15, + ACTIONS(596), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11453,10 +11476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6547] = 2, - ACTIONS(594), 2, + ACTIONS(598), 2, sym__stars, sym__sectionend, - ACTIONS(596), 15, + ACTIONS(600), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11473,10 +11496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6569] = 2, - ACTIONS(598), 2, + ACTIONS(602), 2, sym__stars, sym__sectionend, - ACTIONS(600), 15, + ACTIONS(604), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11493,10 +11516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6591] = 2, - ACTIONS(680), 2, + ACTIONS(684), 2, sym__stars, sym__sectionend, - ACTIONS(678), 15, + ACTIONS(682), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11513,10 +11536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6613] = 2, - ACTIONS(602), 2, + ACTIONS(606), 2, sym__stars, sym__sectionend, - ACTIONS(604), 15, + ACTIONS(608), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11533,10 +11556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6635] = 2, - ACTIONS(684), 2, + ACTIONS(688), 2, sym__stars, sym__sectionend, - ACTIONS(682), 15, + ACTIONS(686), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11553,10 +11576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6657] = 2, - ACTIONS(606), 2, + ACTIONS(610), 2, sym__stars, sym__sectionend, - ACTIONS(608), 15, + ACTIONS(612), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11573,10 +11596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6679] = 2, - ACTIONS(610), 2, + ACTIONS(614), 2, sym__stars, sym__sectionend, - ACTIONS(612), 15, + ACTIONS(616), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11593,10 +11616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6701] = 2, - ACTIONS(614), 2, + ACTIONS(618), 2, sym__stars, sym__sectionend, - ACTIONS(616), 15, + ACTIONS(620), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11613,10 +11636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6723] = 2, - ACTIONS(618), 2, + ACTIONS(622), 2, sym__stars, sym__sectionend, - ACTIONS(620), 15, + ACTIONS(624), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11633,10 +11656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6745] = 2, - ACTIONS(674), 2, + ACTIONS(678), 2, sym__stars, sym__sectionend, - ACTIONS(676), 15, + ACTIONS(680), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11653,10 +11676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6767] = 2, - ACTIONS(666), 2, + ACTIONS(670), 2, sym__stars, sym__sectionend, - ACTIONS(668), 15, + ACTIONS(672), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11673,10 +11696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6789] = 2, - ACTIONS(622), 2, + ACTIONS(626), 2, sym__stars, sym__sectionend, - ACTIONS(624), 15, + ACTIONS(628), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11693,10 +11716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6811] = 2, - ACTIONS(626), 2, + ACTIONS(630), 2, sym__stars, sym__sectionend, - ACTIONS(628), 15, + ACTIONS(632), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11713,10 +11736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6833] = 2, - ACTIONS(672), 2, + ACTIONS(676), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(670), 15, + ACTIONS(674), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11733,10 +11756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6855] = 2, - ACTIONS(684), 2, + ACTIONS(688), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(682), 15, + ACTIONS(686), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11753,10 +11776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6877] = 2, - ACTIONS(638), 2, + ACTIONS(642), 2, sym__stars, sym__sectionend, - ACTIONS(640), 15, + ACTIONS(644), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11773,10 +11796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6899] = 2, - ACTIONS(680), 2, + ACTIONS(684), 2, sym__stars, ts_builtin_sym_end, - ACTIONS(678), 15, + ACTIONS(682), 15, anon_sym_LF, anon_sym_CR, sym__eol, @@ -11793,11 +11816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6921] = 2, - ACTIONS(686), 3, + ACTIONS(690), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(688), 13, + ACTIONS(692), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11812,11 +11835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6942] = 2, - ACTIONS(690), 3, + ACTIONS(694), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(692), 13, + ACTIONS(696), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11831,11 +11854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6963] = 2, - ACTIONS(694), 3, + ACTIONS(698), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(696), 13, + ACTIONS(700), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11850,11 +11873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [6984] = 2, - ACTIONS(690), 3, + ACTIONS(694), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(692), 13, + ACTIONS(696), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11869,11 +11892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7005] = 2, - ACTIONS(700), 3, + ACTIONS(704), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(698), 13, + ACTIONS(702), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11888,11 +11911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7026] = 2, - ACTIONS(704), 3, + ACTIONS(708), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(702), 13, + ACTIONS(706), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11907,42 +11930,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7047] = 14, - ACTIONS(708), 1, + ACTIONS(712), 1, sym_flag, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_open, - ACTIONS(712), 1, + ACTIONS(716), 1, anon_sym_close, - ACTIONS(714), 1, + ACTIONS(718), 1, anon_sym_commodity, - ACTIONS(716), 1, + ACTIONS(720), 1, anon_sym_pad, - ACTIONS(718), 1, + ACTIONS(722), 1, anon_sym_balance, - ACTIONS(720), 1, + ACTIONS(724), 1, anon_sym_price, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_event, - ACTIONS(724), 1, + ACTIONS(728), 1, anon_sym_query, - ACTIONS(726), 1, + ACTIONS(730), 1, anon_sym_note, - ACTIONS(728), 1, + ACTIONS(732), 1, anon_sym_document, - ACTIONS(730), 1, + ACTIONS(734), 1, anon_sym_custom, STATE(318), 1, sym_txn, - ACTIONS(706), 3, + ACTIONS(710), 3, anon_sym_STAR, anon_sym_txn, anon_sym_POUND, [7092] = 2, - ACTIONS(732), 3, + ACTIONS(736), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(734), 13, + ACTIONS(738), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11957,11 +11980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7113] = 2, - ACTIONS(736), 3, + ACTIONS(740), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(738), 13, + ACTIONS(742), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11976,11 +11999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7134] = 2, - ACTIONS(742), 3, + ACTIONS(746), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(740), 13, + ACTIONS(744), 13, anon_sym_LF, sym__eol, sym_flag, @@ -11995,11 +12018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7155] = 2, - ACTIONS(746), 3, + ACTIONS(750), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(744), 13, + ACTIONS(748), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12014,11 +12037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7176] = 2, - ACTIONS(750), 3, + ACTIONS(754), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(748), 13, + ACTIONS(752), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12033,11 +12056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7197] = 2, - ACTIONS(704), 3, + ACTIONS(708), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(702), 13, + ACTIONS(706), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12052,11 +12075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7218] = 2, - ACTIONS(754), 3, + ACTIONS(758), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(752), 13, + ACTIONS(756), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12071,11 +12094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7239] = 2, - ACTIONS(750), 3, + ACTIONS(754), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(748), 13, + ACTIONS(752), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12090,21 +12113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7260] = 8, - ACTIONS(756), 1, + ACTIONS(760), 1, sym__eol, - ACTIONS(762), 1, + ACTIONS(766), 1, sym_number, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, STATE(320), 1, sym_amount, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(281), 2, sym_custom_value, aux_sym_custom_repeat1, - ACTIONS(760), 4, + ACTIONS(764), 4, sym_bool, sym_date, sym_account, @@ -12115,11 +12138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7293] = 2, - ACTIONS(694), 3, + ACTIONS(698), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(696), 13, + ACTIONS(700), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12134,11 +12157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7314] = 2, - ACTIONS(754), 3, + ACTIONS(758), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(752), 13, + ACTIONS(756), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12153,11 +12176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7335] = 2, - ACTIONS(768), 3, + ACTIONS(772), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(766), 13, + ACTIONS(770), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12172,11 +12195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7356] = 2, - ACTIONS(772), 3, + ACTIONS(776), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(770), 13, + ACTIONS(774), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12191,11 +12214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7377] = 2, - ACTIONS(774), 3, + ACTIONS(778), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(776), 13, + ACTIONS(780), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12210,11 +12233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7398] = 2, - ACTIONS(780), 3, + ACTIONS(784), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(778), 13, + ACTIONS(782), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12229,11 +12252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7419] = 2, - ACTIONS(746), 3, + ACTIONS(750), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(744), 13, + ACTIONS(748), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12248,11 +12271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7440] = 2, - ACTIONS(782), 3, + ACTIONS(786), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(784), 13, + ACTIONS(788), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12267,11 +12290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7461] = 2, - ACTIONS(742), 3, + ACTIONS(746), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(740), 13, + ACTIONS(744), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12286,11 +12309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7482] = 2, - ACTIONS(700), 3, + ACTIONS(704), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(698), 13, + ACTIONS(702), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12305,11 +12328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7503] = 2, - ACTIONS(788), 3, + ACTIONS(792), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(786), 13, + ACTIONS(790), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12324,11 +12347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7524] = 2, - ACTIONS(774), 3, + ACTIONS(778), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(776), 13, + ACTIONS(780), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12343,21 +12366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7545] = 8, - ACTIONS(762), 1, + ACTIONS(766), 1, sym_number, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(794), 1, sym__eol, STATE(320), 1, sym_amount, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(281), 2, sym_custom_value, aux_sym_custom_repeat1, - ACTIONS(760), 4, + ACTIONS(764), 4, sym_bool, sym_date, sym_account, @@ -12368,21 +12391,21 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7578] = 8, - ACTIONS(792), 1, + ACTIONS(796), 1, sym__eol, - ACTIONS(800), 1, + ACTIONS(804), 1, sym_number, - ACTIONS(803), 1, + ACTIONS(807), 1, anon_sym_LPAREN, STATE(320), 1, sym_amount, - ACTIONS(794), 2, + ACTIONS(798), 2, sym_plus, sym_minus, STATE(281), 2, sym_custom_value, aux_sym_custom_repeat1, - ACTIONS(797), 4, + ACTIONS(801), 4, sym_bool, sym_date, sym_account, @@ -12393,21 +12416,21 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7611] = 8, - ACTIONS(762), 1, + ACTIONS(766), 1, sym_number, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(806), 1, + ACTIONS(810), 1, sym__eol, STATE(320), 1, sym_amount, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(267), 2, sym_custom_value, aux_sym_custom_repeat1, - ACTIONS(760), 4, + ACTIONS(764), 4, sym_bool, sym_date, sym_account, @@ -12418,42 +12441,42 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7644] = 14, - ACTIONS(708), 1, + ACTIONS(712), 1, sym_flag, - ACTIONS(808), 1, + ACTIONS(812), 1, anon_sym_open, - ACTIONS(810), 1, + ACTIONS(814), 1, anon_sym_close, - ACTIONS(812), 1, + ACTIONS(816), 1, anon_sym_commodity, - ACTIONS(814), 1, + ACTIONS(818), 1, anon_sym_pad, - ACTIONS(816), 1, + ACTIONS(820), 1, anon_sym_balance, - ACTIONS(818), 1, + ACTIONS(822), 1, anon_sym_price, - ACTIONS(820), 1, + ACTIONS(824), 1, anon_sym_event, - ACTIONS(822), 1, + ACTIONS(826), 1, anon_sym_query, - ACTIONS(824), 1, + ACTIONS(828), 1, anon_sym_note, - ACTIONS(826), 1, + ACTIONS(830), 1, anon_sym_document, - ACTIONS(828), 1, + ACTIONS(832), 1, anon_sym_custom, STATE(327), 1, sym_txn, - ACTIONS(706), 3, + ACTIONS(710), 3, anon_sym_STAR, anon_sym_txn, anon_sym_POUND, [7689] = 2, - ACTIONS(782), 3, + ACTIONS(786), 3, sym__stars, sym__sectionend, anon_sym_CR, - ACTIONS(784), 13, + ACTIONS(788), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12468,11 +12491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7710] = 2, - ACTIONS(830), 3, + ACTIONS(834), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(832), 13, + ACTIONS(836), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12487,11 +12510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7731] = 2, - ACTIONS(788), 3, + ACTIONS(792), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(786), 13, + ACTIONS(790), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12506,11 +12529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7752] = 2, - ACTIONS(768), 3, + ACTIONS(772), 3, sym__stars, ts_builtin_sym_end, anon_sym_CR, - ACTIONS(766), 13, + ACTIONS(770), 13, anon_sym_LF, sym__eol, sym_flag, @@ -12525,21 +12548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_plugin, anon_sym_SEMI, [7773] = 8, - ACTIONS(762), 1, + ACTIONS(766), 1, sym_number, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(838), 1, sym__eol, STATE(320), 1, sym_amount, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(280), 2, sym_custom_value, aux_sym_custom_repeat1, - ACTIONS(760), 4, + ACTIONS(764), 4, sym_bool, sym_date, sym_account, @@ -12550,22 +12573,22 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7806] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(656), 1, sym_currency, - ACTIONS(654), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(656), 1, + ACTIONS(660), 1, anon_sym_POUND, STATE(418), 1, sym_cost_comp, STATE(429), 1, sym_compound_amount, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, - ACTIONS(650), 3, + ACTIONS(654), 3, anon_sym_STAR, sym_date, sym_string, @@ -12575,15 +12598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7840] = 11, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(836), 1, + ACTIONS(840), 1, sym__eol, - ACTIONS(838), 1, - anon_sym_STAR, ACTIONS(842), 1, - sym_account, + anon_sym_STAR, ACTIONS(846), 1, + sym_account, + ACTIONS(850), 1, sym_key, STATE(381), 1, aux_sym_tags_links_repeat1, @@ -12591,25 +12614,25 @@ static const uint16_t ts_small_parse_table[] = { sym_key_value, STATE(606), 1, sym_optflag, - ACTIONS(840), 2, + ACTIONS(844), 2, sym_flag, anon_sym_POUND, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, STATE(534), 2, sym_tags_links, sym_comment, [7877] = 11, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(838), 1, + ACTIONS(842), 1, anon_sym_STAR, - ACTIONS(846), 1, + ACTIONS(850), 1, sym_key, - ACTIONS(848), 1, + ACTIONS(852), 1, sym__eol, - ACTIONS(850), 1, + ACTIONS(854), 1, sym_account, STATE(381), 1, aux_sym_tags_links_repeat1, @@ -12617,23 +12640,23 @@ static const uint16_t ts_small_parse_table[] = { sym_key_value, STATE(539), 1, sym_optflag, - ACTIONS(840), 2, + ACTIONS(844), 2, sym_flag, anon_sym_POUND, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, STATE(542), 2, sym_tags_links, sym_comment, [7914] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(852), 1, + ACTIONS(856), 1, sym__eol, STATE(415), 1, sym_price_annotation, @@ -12641,7 +12664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(560), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12650,13 +12673,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7946] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(854), 1, + ACTIONS(858), 1, sym__eol, STATE(389), 1, sym_price_annotation, @@ -12664,7 +12687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(562), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12673,13 +12696,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [7978] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(856), 1, + ACTIONS(860), 1, sym__eol, STATE(424), 1, sym_price_annotation, @@ -12687,7 +12710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(488), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12696,13 +12719,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8010] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(858), 1, + ACTIONS(862), 1, sym__eol, STATE(413), 1, sym_price_annotation, @@ -12710,7 +12733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(556), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12719,11 +12742,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8042] = 3, - ACTIONS(862), 1, + ACTIONS(866), 1, anon_sym_RBRACE, STATE(334), 1, sym_asterisk, - ACTIONS(860), 11, + ACTIONS(864), 11, sym__eol, anon_sym_STAR, sym_slash, @@ -12736,13 +12759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_RBRACE_RBRACE, [8062] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(864), 1, + ACTIONS(868), 1, sym__eol, STATE(420), 1, sym_price_annotation, @@ -12750,7 +12773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(582), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12759,13 +12782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8094] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(866), 1, + ACTIONS(870), 1, sym__eol, STATE(430), 1, sym_price_annotation, @@ -12773,7 +12796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(578), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12782,13 +12805,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8126] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(868), 1, + ACTIONS(872), 1, sym__eol, STATE(432), 1, sym_price_annotation, @@ -12796,7 +12819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(471), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12805,13 +12828,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8158] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(870), 1, + ACTIONS(874), 1, sym__eol, STATE(425), 1, sym_price_annotation, @@ -12819,7 +12842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(574), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12830,11 +12853,11 @@ static const uint16_t ts_small_parse_table[] = { [8190] = 3, STATE(336), 1, sym_asterisk, - ACTIONS(862), 3, + ACTIONS(866), 3, sym_bool, sym_currency, sym_number, - ACTIONS(860), 9, + ACTIONS(864), 9, sym__eol, anon_sym_STAR, sym_slash, @@ -12845,13 +12868,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LPAREN, [8210] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(872), 1, + ACTIONS(876), 1, sym__eol, STATE(410), 1, sym_price_annotation, @@ -12859,7 +12882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(512), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12868,13 +12891,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8242] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(874), 1, + ACTIONS(878), 1, sym__eol, STATE(423), 1, sym_price_annotation, @@ -12882,7 +12905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(570), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12891,13 +12914,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8274] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(876), 1, + ACTIONS(880), 1, sym__eol, STATE(427), 1, sym_price_annotation, @@ -12905,7 +12928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(577), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12914,13 +12937,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8306] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(878), 1, + ACTIONS(882), 1, sym__eol, STATE(406), 1, sym_price_annotation, @@ -12928,7 +12951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(552), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12937,13 +12960,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8338] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(880), 1, + ACTIONS(884), 1, sym__eol, STATE(412), 1, sym_price_annotation, @@ -12951,7 +12974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(498), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12960,13 +12983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8370] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(882), 1, + ACTIONS(886), 1, sym__eol, STATE(395), 1, sym_price_annotation, @@ -12974,7 +12997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(544), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -12983,15 +13006,15 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8402] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(890), 1, + ACTIONS(894), 1, anon_sym_RBRACE, STATE(334), 1, sym_asterisk, - ACTIONS(884), 9, + ACTIONS(888), 9, sym__eol, sym_plus, sym_minus, @@ -13002,11 +13025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_RBRACE_RBRACE, [8426] = 3, - ACTIONS(890), 1, + ACTIONS(894), 1, anon_sym_RBRACE, STATE(334), 1, sym_asterisk, - ACTIONS(884), 11, + ACTIONS(888), 11, sym__eol, anon_sym_STAR, sym_slash, @@ -13019,13 +13042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_RBRACE_RBRACE, [8446] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(892), 1, + ACTIONS(896), 1, sym__eol, STATE(422), 1, sym_price_annotation, @@ -13033,7 +13056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(573), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -13042,17 +13065,17 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8478] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(894), 1, + ACTIONS(898), 1, sym_slash, STATE(336), 1, sym_asterisk, - ACTIONS(890), 3, + ACTIONS(894), 3, sym_bool, sym_currency, sym_number, - ACTIONS(884), 7, + ACTIONS(888), 7, sym__eol, sym_plus, sym_minus, @@ -13061,21 +13084,21 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LPAREN, [8502] = 7, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(894), 1, + ACTIONS(898), 1, sym_slash, - ACTIONS(902), 1, + ACTIONS(906), 1, sym_currency, STATE(336), 1, sym_asterisk, - ACTIONS(898), 2, + ACTIONS(902), 2, sym_plus, sym_minus, - ACTIONS(900), 2, + ACTIONS(904), 2, sym_bool, sym_number, - ACTIONS(896), 5, + ACTIONS(900), 5, sym__eol, sym_date, sym_account, @@ -13084,11 +13107,11 @@ static const uint16_t ts_small_parse_table[] = { [8530] = 3, STATE(336), 1, sym_asterisk, - ACTIONS(890), 3, + ACTIONS(894), 3, sym_bool, sym_currency, sym_number, - ACTIONS(884), 9, + ACTIONS(888), 9, sym__eol, anon_sym_STAR, sym_slash, @@ -13099,13 +13122,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LPAREN, [8550] = 9, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(546), 1, + ACTIONS(550), 1, sym_number, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(904), 1, + ACTIONS(908), 1, sym__eol, STATE(401), 1, sym_price_annotation, @@ -13113,7 +13136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_incomplete_amount, STATE(604), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(360), 4, @@ -13122,11 +13145,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8582] = 2, - ACTIONS(908), 3, + ACTIONS(912), 3, sym_bool, sym_currency, sym_number, - ACTIONS(906), 9, + ACTIONS(910), 9, sym__eol, anon_sym_STAR, sym_slash, @@ -13137,9 +13160,9 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LPAREN, [8599] = 2, - ACTIONS(908), 1, + ACTIONS(912), 1, anon_sym_RBRACE, - ACTIONS(906), 11, + ACTIONS(910), 11, sym__eol, anon_sym_STAR, sym_slash, @@ -13152,30 +13175,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_RBRACE_RBRACE, [8616] = 8, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(912), 1, + ACTIONS(916), 1, sym_currency, - ACTIONS(914), 1, - anon_sym_POUND, ACTIONS(918), 1, + anon_sym_POUND, + ACTIONS(922), 1, anon_sym_RBRACE, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, - ACTIONS(916), 2, + ACTIONS(920), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [8643] = 8, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(920), 1, + ACTIONS(924), 1, sym__eol, - ACTIONS(922), 1, + ACTIONS(926), 1, sym_string, STATE(347), 1, sym__txn_strings, @@ -13185,17 +13208,17 @@ static const uint16_t ts_small_parse_table[] = { sym_tags_links, STATE(502), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, [8669] = 5, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(928), 1, sym_currency, - ACTIONS(926), 1, + ACTIONS(930), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(351), 4, @@ -13204,9 +13227,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8689] = 2, - ACTIONS(900), 1, + ACTIONS(904), 1, sym_number, - ACTIONS(896), 8, + ACTIONS(900), 8, sym__eol, sym_plus, sym_minus, @@ -13216,13 +13239,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LPAREN, [8703] = 5, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(928), 1, + ACTIONS(932), 1, sym_number, STATE(414), 1, sym_amount_tolerance, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(344), 4, @@ -13231,13 +13254,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8723] = 5, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(934), 1, sym_number, STATE(477), 1, sym_amount, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(353), 4, @@ -13246,13 +13269,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8743] = 5, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(932), 1, + ACTIONS(936), 1, sym_currency, - ACTIONS(934), 1, + ACTIONS(938), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(358), 4, @@ -13261,13 +13284,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8763] = 5, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(934), 1, sym_number, STATE(515), 1, sym_amount, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(353), 4, @@ -13276,13 +13299,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8783] = 5, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(928), 1, + ACTIONS(932), 1, sym_number, STATE(402), 1, sym_amount_tolerance, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(344), 4, @@ -13291,9 +13314,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8803] = 2, - ACTIONS(938), 1, + ACTIONS(942), 1, sym_number, - ACTIONS(936), 8, + ACTIONS(940), 8, sym__eol, sym_plus, sym_minus, @@ -13303,11 +13326,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LPAREN, [8817] = 8, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(922), 1, + ACTIONS(926), 1, sym_string, - ACTIONS(940), 1, + ACTIONS(944), 1, sym__eol, STATE(342), 1, sym__txn_strings, @@ -13317,15 +13340,15 @@ static const uint16_t ts_small_parse_table[] = { sym_tags_links, STATE(465), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, [8843] = 4, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(942), 1, + ACTIONS(946), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(361), 4, @@ -13334,11 +13357,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8860] = 4, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(944), 1, + ACTIONS(948), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(359), 4, @@ -13347,11 +13370,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8877] = 4, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(946), 1, + ACTIONS(950), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(365), 4, @@ -13360,11 +13383,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8894] = 4, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(948), 1, + ACTIONS(952), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(296), 4, @@ -13373,28 +13396,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8911] = 8, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(950), 1, + ACTIONS(954), 1, sym__eol, - ACTIONS(952), 1, + ACTIONS(956), 1, sym_atat, - ACTIONS(954), 1, + ACTIONS(958), 1, sym_at, STATE(372), 1, sym_cost_spec, STATE(565), 1, sym_comment, [8936] = 4, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(956), 1, + ACTIONS(960), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(308), 4, @@ -13403,11 +13426,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8953] = 4, - ACTIONS(522), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(958), 1, + ACTIONS(962), 1, sym_number, - ACTIONS(514), 2, + ACTIONS(518), 2, sym_plus, sym_minus, STATE(309), 4, @@ -13416,11 +13439,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8970] = 4, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(964), 1, sym_number, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(301), 4, @@ -13429,11 +13452,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [8987] = 4, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(966), 1, sym_number, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(313), 4, @@ -13442,28 +13465,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [9004] = 8, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(964), 1, + ACTIONS(968), 1, sym__eol, - ACTIONS(966), 1, + ACTIONS(970), 1, sym_atat, - ACTIONS(968), 1, + ACTIONS(972), 1, sym_at, STATE(371), 1, sym_cost_spec, STATE(468), 1, sym_comment, [9029] = 4, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(970), 1, + ACTIONS(974), 1, sym_number, - ACTIONS(758), 2, + ACTIONS(762), 2, sym_plus, sym_minus, STATE(311), 4, @@ -13472,57 +13495,57 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_number_expr, sym_binary_number_expr, [9046] = 8, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(972), 1, + ACTIONS(976), 1, sym__eol, - ACTIONS(974), 1, + ACTIONS(978), 1, sym_atat, - ACTIONS(976), 1, + ACTIONS(980), 1, sym_at, STATE(367), 1, sym_cost_spec, STATE(547), 1, sym_comment, [9071] = 8, - ACTIONS(548), 1, + ACTIONS(552), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(554), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(978), 1, + ACTIONS(982), 1, sym__eol, - ACTIONS(980), 1, + ACTIONS(984), 1, sym_atat, - ACTIONS(982), 1, + ACTIONS(986), 1, sym_at, STATE(374), 1, sym_cost_spec, STATE(543), 1, sym_comment, [9096] = 6, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(984), 1, + ACTIONS(988), 1, sym__eol, - ACTIONS(986), 1, + ACTIONS(990), 1, sym_currency, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9116] = 6, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(988), 1, + ACTIONS(992), 1, sym__eol, STATE(381), 1, aux_sym_tags_links_repeat1, @@ -13530,17 +13553,17 @@ static const uint16_t ts_small_parse_table[] = { sym_tags_links, STATE(500), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, [9136] = 7, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(990), 1, + ACTIONS(994), 1, sym__eol, - ACTIONS(992), 1, + ACTIONS(996), 1, sym_currency, - ACTIONS(994), 1, + ACTIONS(998), 1, sym_string, STATE(345), 1, aux_sym_open_repeat2, @@ -13549,27 +13572,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(508), 1, sym_comment, [9158] = 6, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(996), 1, + ACTIONS(1000), 1, sym_currency, - ACTIONS(998), 1, + ACTIONS(1002), 1, anon_sym_TILDE, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9178] = 7, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(992), 1, + ACTIONS(996), 1, sym_currency, - ACTIONS(994), 1, + ACTIONS(998), 1, sym_string, - ACTIONS(1000), 1, + ACTIONS(1004), 1, sym__eol, STATE(379), 1, aux_sym_open_repeat2, @@ -13578,13 +13601,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(528), 1, sym_comment, [9200] = 7, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(992), 1, + ACTIONS(996), 1, sym_currency, - ACTIONS(994), 1, + ACTIONS(998), 1, sym_string, - ACTIONS(1002), 1, + ACTIONS(1006), 1, sym__eol, STATE(379), 1, aux_sym_open_repeat2, @@ -13593,9 +13616,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(563), 1, sym_comment, [9222] = 6, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1004), 1, + ACTIONS(1008), 1, sym__eol, STATE(381), 1, aux_sym_tags_links_repeat1, @@ -13603,17 +13626,17 @@ static const uint16_t ts_small_parse_table[] = { sym_tags_links, STATE(523), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, [9242] = 7, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(992), 1, + ACTIONS(996), 1, sym_currency, - ACTIONS(994), 1, + ACTIONS(998), 1, sym_string, - ACTIONS(1006), 1, + ACTIONS(1010), 1, sym__eol, STATE(346), 1, aux_sym_open_repeat2, @@ -13624,7 +13647,7 @@ static const uint16_t ts_small_parse_table[] = { [9264] = 6, ACTIONS(29), 1, sym__stars, - ACTIONS(1008), 1, + ACTIONS(1012), 1, sym__sectionend, STATE(4), 1, sym_headline, @@ -13637,7 +13660,7 @@ static const uint16_t ts_small_parse_table[] = { [9283] = 6, ACTIONS(29), 1, sym__stars, - ACTIONS(1010), 1, + ACTIONS(1014), 1, sym__sectionend, STATE(4), 1, sym_headline, @@ -13648,43 +13671,43 @@ static const uint16_t ts_small_parse_table[] = { STATE(455), 1, sym__org_stars, [9302] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(1012), 1, + ACTIONS(1016), 1, sym_currency, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9319] = 3, - ACTIONS(1016), 1, + ACTIONS(1020), 1, anon_sym_COMMA, STATE(363), 1, aux_sym_open_repeat1, - ACTIONS(1014), 4, + ACTIONS(1018), 4, sym__eol, sym_currency, sym_string, anon_sym_SEMI, [9332] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(986), 1, + ACTIONS(990), 1, sym_currency, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9349] = 6, ACTIONS(29), 1, sym__stars, - ACTIONS(1018), 1, + ACTIONS(1022), 1, sym__sectionend, STATE(4), 1, sym_headline, @@ -13695,19 +13718,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(455), 1, sym__org_stars, [9368] = 3, - ACTIONS(1016), 1, + ACTIONS(1020), 1, anon_sym_COMMA, STATE(352), 1, aux_sym_open_repeat1, - ACTIONS(1020), 4, + ACTIONS(1024), 4, sym__eol, sym_currency, sym_string, anon_sym_SEMI, [9381] = 6, - ACTIONS(1022), 1, + ACTIONS(1026), 1, sym__stars, - ACTIONS(1025), 1, + ACTIONS(1029), 1, sym__sectionend, STATE(4), 1, sym_headline, @@ -13720,7 +13743,7 @@ static const uint16_t ts_small_parse_table[] = { [9400] = 6, ACTIONS(29), 1, sym__stars, - ACTIONS(1027), 1, + ACTIONS(1031), 1, sym__sectionend, STATE(4), 1, sym_headline, @@ -13731,55 +13754,55 @@ static const uint16_t ts_small_parse_table[] = { STATE(455), 1, sym__org_stars, [9419] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(1029), 1, + ACTIONS(1033), 1, sym_currency, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9436] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(1031), 1, + ACTIONS(1035), 1, anon_sym_RPAREN, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9453] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(1033), 1, + ACTIONS(1037), 1, sym_currency, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9470] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(1035), 1, + ACTIONS(1039), 1, anon_sym_RPAREN, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9487] = 5, - ACTIONS(1039), 1, + ACTIONS(1043), 1, aux_sym__any_token1, STATE(271), 1, sym__nl, @@ -13787,1119 +13810,1119 @@ static const uint16_t ts_small_parse_table[] = { sym_item, STATE(433), 1, sym__any, - ACTIONS(1037), 2, + ACTIONS(1041), 2, anon_sym_LF, anon_sym_CR, [9504] = 3, - ACTIONS(1043), 1, + ACTIONS(1047), 1, anon_sym_COMMA, STATE(363), 1, aux_sym_open_repeat1, - ACTIONS(1041), 4, + ACTIONS(1045), 4, sym__eol, sym_currency, sym_string, anon_sym_SEMI, [9517] = 2, - ACTIONS(1048), 2, + ACTIONS(1052), 2, sym_at, anon_sym_LBRACE, - ACTIONS(1046), 4, + ACTIONS(1050), 4, sym__eol, sym_atat, anon_sym_LBRACE_LBRACE, anon_sym_SEMI, [9528] = 5, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(888), 1, + ACTIONS(892), 1, sym_slash, - ACTIONS(1050), 1, + ACTIONS(1054), 1, sym_currency, STATE(334), 1, sym_asterisk, - ACTIONS(910), 2, + ACTIONS(914), 2, sym_plus, sym_minus, [9545] = 4, - ACTIONS(1052), 1, + ACTIONS(1056), 1, sym__eol, STATE(381), 1, aux_sym_tags_links_repeat1, STATE(450), 1, sym_tags_links, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, [9559] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1054), 1, + ACTIONS(1058), 1, sym__eol, - ACTIONS(1056), 1, + ACTIONS(1060), 1, sym_atat, - ACTIONS(1058), 1, + ACTIONS(1062), 1, sym_at, STATE(558), 1, sym_comment, [9575] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1060), 1, + ACTIONS(1064), 1, sym__eol, - ACTIONS(1062), 1, + ACTIONS(1066), 1, sym_atat, - ACTIONS(1064), 1, + ACTIONS(1068), 1, sym_at, STATE(549), 1, sym_comment, [9591] = 1, - ACTIONS(1066), 5, + ACTIONS(1070), 5, sym__eol, sym_string, sym_tag, sym_link, anon_sym_SEMI, [9599] = 4, - ACTIONS(1068), 1, + ACTIONS(1072), 1, sym__eol, STATE(381), 1, aux_sym_tags_links_repeat1, STATE(548), 1, sym_tags_links, - ACTIONS(844), 2, + ACTIONS(848), 2, sym_tag, sym_link, [9613] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1070), 1, + ACTIONS(1074), 1, sym__eol, - ACTIONS(1072), 1, + ACTIONS(1076), 1, sym_atat, - ACTIONS(1074), 1, + ACTIONS(1078), 1, sym_at, STATE(452), 1, sym_comment, [9629] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1076), 1, + ACTIONS(1080), 1, sym__eol, - ACTIONS(1078), 1, + ACTIONS(1082), 1, sym_atat, - ACTIONS(1080), 1, + ACTIONS(1084), 1, sym_at, STATE(576), 1, sym_comment, [9645] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1082), 1, + ACTIONS(1086), 1, sym__eol, - ACTIONS(1084), 1, + ACTIONS(1088), 1, sym_atat, - ACTIONS(1086), 1, + ACTIONS(1090), 1, sym_at, STATE(567), 1, sym_comment, [9661] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1088), 1, + ACTIONS(1092), 1, sym__eol, - ACTIONS(1090), 1, + ACTIONS(1094), 1, sym_atat, - ACTIONS(1092), 1, + ACTIONS(1096), 1, sym_at, STATE(575), 1, sym_comment, [9677] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1094), 1, + ACTIONS(1098), 1, sym__eol, - ACTIONS(1096), 1, + ACTIONS(1100), 1, sym_atat, - ACTIONS(1098), 1, + ACTIONS(1102), 1, sym_at, STATE(546), 1, sym_comment, [9693] = 5, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1100), 1, + ACTIONS(1104), 1, sym__eol, - ACTIONS(1102), 1, + ACTIONS(1106), 1, sym_atat, - ACTIONS(1104), 1, + ACTIONS(1108), 1, sym_at, STATE(467), 1, sym_comment, [9709] = 1, - ACTIONS(1041), 5, + ACTIONS(1045), 5, sym__eol, sym_currency, sym_string, anon_sym_COMMA, anon_sym_SEMI, [9717] = 2, - ACTIONS(1108), 1, + ACTIONS(1112), 1, sym_string, - ACTIONS(1106), 4, + ACTIONS(1110), 4, sym__eol, sym_tag, sym_link, anon_sym_SEMI, [9727] = 3, - ACTIONS(1110), 1, + ACTIONS(1114), 1, sym_currency, STATE(379), 1, aux_sym_open_repeat2, - ACTIONS(1014), 3, + ACTIONS(1018), 3, sym__eol, sym_string, anon_sym_SEMI, [9739] = 3, STATE(380), 1, aux_sym_tags_links_repeat1, - ACTIONS(1113), 2, + ACTIONS(1117), 2, sym__eol, anon_sym_SEMI, - ACTIONS(1115), 2, + ACTIONS(1119), 2, sym_tag, sym_link, [9751] = 3, STATE(380), 1, aux_sym_tags_links_repeat1, - ACTIONS(1118), 2, + ACTIONS(1122), 2, sym__eol, anon_sym_SEMI, - ACTIONS(1120), 2, + ACTIONS(1124), 2, sym_tag, sym_link, [9763] = 2, - ACTIONS(1124), 1, + ACTIONS(1128), 1, sym_at, - ACTIONS(1122), 3, + ACTIONS(1126), 3, sym__eol, sym_atat, anon_sym_SEMI, [9772] = 2, - ACTIONS(1128), 1, + ACTIONS(1132), 1, sym_at, - ACTIONS(1126), 3, + ACTIONS(1130), 3, sym__eol, sym_atat, anon_sym_SEMI, [9781] = 4, - ACTIONS(1130), 1, + ACTIONS(1134), 1, anon_sym_COMMA, - ACTIONS(1133), 1, + ACTIONS(1137), 1, anon_sym_RBRACE, - ACTIONS(1135), 1, + ACTIONS(1139), 1, anon_sym_RBRACE_RBRACE, STATE(384), 1, aux_sym__cost_comp_list_repeat1, [9794] = 4, - ACTIONS(1137), 1, + ACTIONS(1141), 1, anon_sym_COMMA, - ACTIONS(1139), 1, + ACTIONS(1143), 1, anon_sym_RBRACE, - ACTIONS(1141), 1, + ACTIONS(1145), 1, anon_sym_RBRACE_RBRACE, STATE(387), 1, aux_sym__cost_comp_list_repeat1, [9807] = 1, - ACTIONS(1143), 4, + ACTIONS(1147), 4, sym_plus, sym_minus, sym_number, anon_sym_LPAREN, [9814] = 4, - ACTIONS(1137), 1, + ACTIONS(1141), 1, anon_sym_COMMA, - ACTIONS(1145), 1, + ACTIONS(1149), 1, anon_sym_RBRACE, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_RBRACE_RBRACE, STATE(384), 1, aux_sym__cost_comp_list_repeat1, [9827] = 1, - ACTIONS(1149), 4, + ACTIONS(1153), 4, sym__eol, sym_tag, sym_link, anon_sym_SEMI, [9834] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1151), 1, + ACTIONS(1155), 1, sym__eol, STATE(572), 1, sym_comment, [9844] = 1, - ACTIONS(1153), 3, + ACTIONS(1157), 3, sym__eol, sym_tag, sym_link, [9850] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1155), 1, + ACTIONS(1159), 1, sym__eol, STATE(476), 1, sym_comment, [9860] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1157), 1, + ACTIONS(1161), 1, sym__eol, STATE(475), 1, sym_comment, [9870] = 2, - ACTIONS(1161), 1, + ACTIONS(1165), 1, anon_sym_RBRACE, - ACTIONS(1159), 2, + ACTIONS(1163), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [9878] = 2, - ACTIONS(1165), 1, + ACTIONS(1169), 1, anon_sym_RBRACE, - ACTIONS(1163), 2, + ACTIONS(1167), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [9886] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1167), 1, + ACTIONS(1171), 1, sym__eol, STATE(554), 1, sym_comment, [9896] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1169), 1, + ACTIONS(1173), 1, sym__eol, STATE(484), 1, sym_comment, [9906] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1171), 1, + ACTIONS(1175), 1, sym__eol, STATE(495), 1, sym_comment, [9916] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1173), 1, + ACTIONS(1177), 1, sym__eol, STATE(537), 1, sym_comment, [9926] = 3, - ACTIONS(846), 1, + ACTIONS(850), 1, sym_key, - ACTIONS(1175), 1, + ACTIONS(1179), 1, sym__eol, STATE(535), 1, sym_key_value, [9936] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1177), 1, + ACTIONS(1181), 1, sym__eol, STATE(536), 1, sym_comment, [9946] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1179), 1, + ACTIONS(1183), 1, sym__eol, STATE(482), 1, sym_comment, [9956] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1181), 1, + ACTIONS(1185), 1, sym__eol, STATE(531), 1, sym_comment, [9966] = 3, - ACTIONS(846), 1, + ACTIONS(850), 1, sym_key, - ACTIONS(1183), 1, + ACTIONS(1187), 1, sym__eol, STATE(538), 1, sym_key_value, [9976] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1185), 1, + ACTIONS(1189), 1, sym__eol, STATE(529), 1, sym_comment, [9986] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1187), 1, + ACTIONS(1191), 1, sym__eol, STATE(526), 1, sym_comment, [9996] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1189), 1, + ACTIONS(1193), 1, sym__eol, STATE(581), 1, sym_comment, [10006] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1191), 1, + ACTIONS(1195), 1, sym__eol, STATE(524), 1, sym_comment, [10016] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1193), 1, + ACTIONS(1197), 1, sym__eol, STATE(521), 1, sym_comment, [10026] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1195), 1, + ACTIONS(1199), 1, sym__eol, STATE(511), 1, sym_comment, [10036] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1197), 1, + ACTIONS(1201), 1, sym__eol, STATE(566), 1, sym_comment, [10046] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1199), 1, + ACTIONS(1203), 1, sym__eol, STATE(510), 1, sym_comment, [10056] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1201), 1, + ACTIONS(1205), 1, sym__eol, STATE(564), 1, sym_comment, [10066] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1203), 1, + ACTIONS(1207), 1, sym__eol, STATE(568), 1, sym_comment, [10076] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1205), 1, + ACTIONS(1209), 1, sym__eol, STATE(557), 1, sym_comment, [10086] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1207), 1, + ACTIONS(1211), 1, sym__eol, STATE(571), 1, sym_comment, [10096] = 2, - ACTIONS(1211), 1, + ACTIONS(1215), 1, anon_sym_RBRACE, - ACTIONS(1209), 2, + ACTIONS(1213), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [10104] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1213), 1, + ACTIONS(1217), 1, sym__eol, STATE(509), 1, sym_comment, [10114] = 2, - ACTIONS(1133), 1, + ACTIONS(1137), 1, anon_sym_RBRACE, - ACTIONS(1135), 2, + ACTIONS(1139), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [10122] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1215), 1, + ACTIONS(1219), 1, sym__eol, STATE(599), 1, sym_comment, [10132] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1217), 1, + ACTIONS(1221), 1, sym__eol, STATE(584), 1, sym_comment, [10142] = 2, - ACTIONS(1221), 1, + ACTIONS(1225), 1, anon_sym_RBRACE, - ACTIONS(1219), 2, + ACTIONS(1223), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [10150] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1223), 1, + ACTIONS(1227), 1, sym__eol, STATE(600), 1, sym_comment, [10160] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1225), 1, + ACTIONS(1229), 1, sym__eol, STATE(579), 1, sym_comment, [10170] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1227), 1, + ACTIONS(1231), 1, sym__eol, STATE(551), 1, sym_comment, [10180] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1229), 1, + ACTIONS(1233), 1, sym__eol, STATE(580), 1, sym_comment, [10190] = 2, - ACTIONS(1233), 1, + ACTIONS(1237), 1, anon_sym_RBRACE, - ACTIONS(1231), 2, + ACTIONS(1235), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [10198] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1235), 1, + ACTIONS(1239), 1, sym__eol, STATE(605), 1, sym_comment, [10208] = 2, - ACTIONS(1239), 1, + ACTIONS(1243), 1, anon_sym_RBRACE, - ACTIONS(1237), 2, + ACTIONS(1241), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [10216] = 2, - ACTIONS(1243), 1, + ACTIONS(1247), 1, anon_sym_RBRACE, - ACTIONS(1241), 2, + ACTIONS(1245), 2, anon_sym_COMMA, anon_sym_RBRACE_RBRACE, [10224] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1245), 1, + ACTIONS(1249), 1, sym__eol, STATE(583), 1, sym_comment, [10234] = 3, - ACTIONS(1247), 1, + ACTIONS(1251), 1, anon_sym_LF, - ACTIONS(1249), 1, + ACTIONS(1253), 1, anon_sym_CR, STATE(273), 1, sym__nl, [10244] = 3, - ACTIONS(552), 1, + ACTIONS(556), 1, anon_sym_SEMI, - ACTIONS(1251), 1, + ACTIONS(1255), 1, sym__eol, STATE(462), 1, sym_comment, [10254] = 2, - ACTIONS(1253), 1, + ACTIONS(1257), 1, anon_sym_LF, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_CR, [10261] = 1, - ACTIONS(1257), 2, + ACTIONS(1261), 2, sym__eol, anon_sym_SEMI, [10266] = 1, - ACTIONS(1259), 2, + ACTIONS(1263), 2, sym__eol, anon_sym_SEMI, [10271] = 1, - ACTIONS(686), 2, + ACTIONS(690), 2, sym__stars, sym__sectionend, [10276] = 1, - ACTIONS(1261), 2, + ACTIONS(1265), 2, sym__eol, anon_sym_SEMI, [10281] = 2, - ACTIONS(1263), 1, + ACTIONS(1267), 1, sym_string, STATE(370), 1, sym_filename, [10288] = 2, - ACTIONS(1265), 1, + ACTIONS(1269), 1, sym__eol, - ACTIONS(1267), 1, + ACTIONS(1271), 1, sym_string, [10295] = 2, - ACTIONS(846), 1, + ACTIONS(850), 1, sym_key, STATE(491), 1, sym_key_value, [10302] = 2, - ACTIONS(846), 1, + ACTIONS(850), 1, sym_key, STATE(522), 1, sym_key_value, [10309] = 1, - ACTIONS(736), 2, + ACTIONS(740), 2, sym__stars, sym__sectionend, [10314] = 1, - ACTIONS(732), 2, + ACTIONS(736), 2, sym__stars, sym__sectionend, [10319] = 1, - ACTIONS(1269), 2, + ACTIONS(1273), 2, sym__eol, anon_sym_SEMI, [10324] = 1, - ACTIONS(830), 2, + ACTIONS(834), 2, sym__stars, sym__sectionend, [10329] = 2, - ACTIONS(1271), 1, + ACTIONS(1275), 1, sym__eol, - ACTIONS(1273), 1, + ACTIONS(1277), 1, sym_string, [10336] = 1, - ACTIONS(1275), 2, + ACTIONS(1279), 2, sym__stars, sym__sectionend, [10341] = 2, - ACTIONS(1263), 1, + ACTIONS(1267), 1, sym_string, STATE(366), 1, sym_filename, [10348] = 1, - ACTIONS(1277), 1, + ACTIONS(1281), 1, sym_account, [10352] = 1, - ACTIONS(1279), 1, + ACTIONS(1283), 1, sym__eol, [10356] = 1, - ACTIONS(1281), 1, + ACTIONS(1285), 1, sym__eol, [10360] = 1, - ACTIONS(1283), 1, + ACTIONS(1287), 1, sym__eol, [10364] = 1, - ACTIONS(1285), 1, + ACTIONS(1289), 1, aux_sym_headline_token1, [10368] = 1, - ACTIONS(1287), 1, + ACTIONS(1291), 1, sym__eol, [10372] = 1, - ACTIONS(1289), 1, + ACTIONS(1293), 1, aux_sym_headline_token1, [10376] = 1, - ACTIONS(1291), 1, + ACTIONS(1295), 1, ts_builtin_sym_end, [10380] = 1, - ACTIONS(1293), 1, + ACTIONS(1297), 1, aux_sym__any_token1, [10384] = 1, - ACTIONS(1295), 1, + ACTIONS(1299), 1, sym_string, [10388] = 1, - ACTIONS(1297), 1, + ACTIONS(1301), 1, sym_string, [10392] = 1, - ACTIONS(1299), 1, + ACTIONS(1303), 1, sym_string, [10396] = 1, - ACTIONS(1301), 1, + ACTIONS(1305), 1, sym_key, [10400] = 1, - ACTIONS(1303), 1, + ACTIONS(1307), 1, sym__eol, [10404] = 1, - ACTIONS(1305), 1, + ACTIONS(1309), 1, sym__eol, [10408] = 1, - ACTIONS(1307), 1, + ACTIONS(1311), 1, sym_tag, [10412] = 1, - ACTIONS(1309), 1, + ACTIONS(1313), 1, sym__eol, [10416] = 1, - ACTIONS(1311), 1, + ACTIONS(1315), 1, sym__eol, [10420] = 1, - ACTIONS(1313), 1, + ACTIONS(1317), 1, sym__eol, [10424] = 1, - ACTIONS(1315), 1, + ACTIONS(1319), 1, sym__eol, [10428] = 1, - ACTIONS(1317), 1, + ACTIONS(1321), 1, anon_sym_RBRACE_RBRACE, [10432] = 1, - ACTIONS(1317), 1, + ACTIONS(1321), 1, anon_sym_RBRACE, [10436] = 1, - ACTIONS(1319), 1, + ACTIONS(1323), 1, sym__eol, [10440] = 1, - ACTIONS(1321), 1, + ACTIONS(1325), 1, sym_tag, [10444] = 1, - ACTIONS(1323), 1, + ACTIONS(1327), 1, sym__eol, [10448] = 1, - ACTIONS(1325), 1, + ACTIONS(1329), 1, sym__eol, [10452] = 1, - ACTIONS(1327), 1, + ACTIONS(1331), 1, sym__eol, [10456] = 1, - ACTIONS(1329), 1, + ACTIONS(1333), 1, sym__eol, [10460] = 1, - ACTIONS(1331), 1, + ACTIONS(1335), 1, sym__eol, [10464] = 1, - ACTIONS(1333), 1, + ACTIONS(1337), 1, sym_currency, [10468] = 1, - ACTIONS(1335), 1, + ACTIONS(1339), 1, sym__eol, [10472] = 1, - ACTIONS(1337), 1, + ACTIONS(1341), 1, sym__eol, [10476] = 1, - ACTIONS(1339), 1, + ACTIONS(1343), 1, sym__eol, [10480] = 1, - ACTIONS(1341), 1, + ACTIONS(1345), 1, sym__eol, [10484] = 1, - ACTIONS(1343), 1, + ACTIONS(1347), 1, sym_account, [10488] = 1, - ACTIONS(1345), 1, + ACTIONS(1349), 1, sym__eol, [10492] = 1, - ACTIONS(1347), 1, + ACTIONS(1351), 1, sym_currency, [10496] = 1, - ACTIONS(1349), 1, + ACTIONS(1353), 1, sym__eol, [10500] = 1, - ACTIONS(1351), 1, + ACTIONS(1355), 1, sym__eol, [10504] = 1, - ACTIONS(1353), 1, + ACTIONS(1357), 1, sym__eol, [10508] = 1, - ACTIONS(1355), 1, + ACTIONS(1359), 1, sym__eol, [10512] = 1, - ACTIONS(1357), 1, + ACTIONS(1361), 1, sym__eol, [10516] = 1, - ACTIONS(1359), 1, + ACTIONS(1363), 1, sym__eol, [10520] = 1, - ACTIONS(1361), 1, + ACTIONS(1365), 1, sym__eol, [10524] = 1, - ACTIONS(1363), 1, + ACTIONS(1367), 1, sym_account, [10528] = 1, - ACTIONS(1365), 1, + ACTIONS(1369), 1, aux_sym__any_token1, [10532] = 1, - ACTIONS(1367), 1, + ACTIONS(1371), 1, sym__eol, [10536] = 1, - ACTIONS(1369), 1, + ACTIONS(1373), 1, sym_currency, [10540] = 1, - ACTIONS(1371), 1, + ACTIONS(1375), 1, sym_string, [10544] = 1, - ACTIONS(1373), 1, + ACTIONS(1377), 1, sym__eol, [10548] = 1, - ACTIONS(1375), 1, + ACTIONS(1379), 1, sym_string, [10552] = 1, - ACTIONS(1377), 1, + ACTIONS(1381), 1, sym__eol, [10556] = 1, - ACTIONS(1379), 1, + ACTIONS(1383), 1, sym_account, [10560] = 1, - ACTIONS(1381), 1, + ACTIONS(1385), 1, sym__eol, [10564] = 1, - ACTIONS(1383), 1, + ACTIONS(1387), 1, sym__eol, [10568] = 1, - ACTIONS(1385), 1, + ACTIONS(1389), 1, sym__eol, [10572] = 1, - ACTIONS(1387), 1, + ACTIONS(1391), 1, sym__eol, [10576] = 1, - ACTIONS(1389), 1, + ACTIONS(1393), 1, sym_account, [10580] = 1, - ACTIONS(1391), 1, + ACTIONS(1395), 1, sym_string, [10584] = 1, - ACTIONS(1393), 1, + ACTIONS(1397), 1, sym__eol, [10588] = 1, - ACTIONS(1395), 1, + ACTIONS(1399), 1, sym__eol, [10592] = 1, - ACTIONS(1397), 1, + ACTIONS(1401), 1, sym__eol, [10596] = 1, - ACTIONS(1399), 1, + ACTIONS(1403), 1, sym__eol, [10600] = 1, - ACTIONS(1401), 1, + ACTIONS(1405), 1, sym__eol, [10604] = 1, - ACTIONS(1403), 1, + ACTIONS(1407), 1, sym__eol, [10608] = 1, - ACTIONS(1405), 1, + ACTIONS(1409), 1, sym__eol, [10612] = 1, - ACTIONS(1407), 1, + ACTIONS(1411), 1, sym__eol, [10616] = 1, - ACTIONS(1409), 1, + ACTIONS(1413), 1, sym__eol, [10620] = 1, - ACTIONS(1411), 1, + ACTIONS(1415), 1, sym__eol, [10624] = 1, - ACTIONS(1413), 1, + ACTIONS(1417), 1, sym__eol, [10628] = 1, - ACTIONS(1415), 1, + ACTIONS(1419), 1, anon_sym_COLON, [10632] = 1, - ACTIONS(984), 1, + ACTIONS(988), 1, sym__eol, [10636] = 1, - ACTIONS(1417), 1, + ACTIONS(1421), 1, sym__eol, [10640] = 1, - ACTIONS(1419), 1, + ACTIONS(1423), 1, sym__eol, [10644] = 1, - ACTIONS(1421), 1, + ACTIONS(1425), 1, sym__eol, [10648] = 1, - ACTIONS(1423), 1, + ACTIONS(1427), 1, sym__eol, [10652] = 1, - ACTIONS(1425), 1, + ACTIONS(1429), 1, anon_sym_COLON, [10656] = 1, - ACTIONS(1427), 1, + ACTIONS(1431), 1, sym__eol, [10660] = 1, - ACTIONS(1429), 1, + ACTIONS(1433), 1, sym_string, [10664] = 1, - ACTIONS(1431), 1, + ACTIONS(1435), 1, sym__eol, [10668] = 1, - ACTIONS(1433), 1, + ACTIONS(1437), 1, sym__eol, [10672] = 1, - ACTIONS(1435), 1, + ACTIONS(1439), 1, sym__eol, [10676] = 1, - ACTIONS(1437), 1, + ACTIONS(1441), 1, sym__eol, [10680] = 1, - ACTIONS(1439), 1, + ACTIONS(1443), 1, sym_account, [10684] = 1, - ACTIONS(1441), 1, + ACTIONS(1445), 1, sym__eol, [10688] = 1, - ACTIONS(1443), 1, + ACTIONS(1447), 1, sym__eol, [10692] = 1, - ACTIONS(1445), 1, + ACTIONS(1449), 1, sym__eol, [10696] = 1, - ACTIONS(1447), 1, + ACTIONS(1451), 1, sym__eol, [10700] = 1, - ACTIONS(1449), 1, + ACTIONS(1453), 1, sym__eol, [10704] = 1, - ACTIONS(1451), 1, + ACTIONS(1455), 1, sym__eol, [10708] = 1, - ACTIONS(1453), 1, + ACTIONS(1457), 1, sym_account, [10712] = 1, - ACTIONS(1455), 1, + ACTIONS(1459), 1, sym__eol, [10716] = 1, - ACTIONS(1457), 1, + ACTIONS(1461), 1, sym__eol, [10720] = 1, - ACTIONS(1459), 1, + ACTIONS(1463), 1, sym__eol, [10724] = 1, - ACTIONS(1461), 1, + ACTIONS(1465), 1, sym__eol, [10728] = 1, - ACTIONS(1463), 1, + ACTIONS(1467), 1, sym__eol, [10732] = 1, - ACTIONS(1465), 1, + ACTIONS(1469), 1, sym_account, [10736] = 1, - ACTIONS(1467), 1, + ACTIONS(1471), 1, sym__eol, [10740] = 1, - ACTIONS(1469), 1, + ACTIONS(1473), 1, sym__eol, [10744] = 1, - ACTIONS(1471), 1, + ACTIONS(1475), 1, sym__eol, [10748] = 1, - ACTIONS(1473), 1, + ACTIONS(1477), 1, sym__eol, [10752] = 1, - ACTIONS(1475), 1, + ACTIONS(1479), 1, sym_account, [10756] = 1, - ACTIONS(1477), 1, + ACTIONS(1481), 1, sym__eol, [10760] = 1, - ACTIONS(1479), 1, + ACTIONS(1483), 1, sym__eol, [10764] = 1, - ACTIONS(1481), 1, + ACTIONS(1485), 1, sym__eol, [10768] = 1, - ACTIONS(1483), 1, + ACTIONS(1487), 1, sym__eol, [10772] = 1, - ACTIONS(1485), 1, + ACTIONS(1489), 1, sym_string, [10776] = 1, - ACTIONS(1487), 1, + ACTIONS(1491), 1, sym__eol, [10780] = 1, - ACTIONS(1489), 1, + ACTIONS(1493), 1, sym__eol, [10784] = 1, - ACTIONS(1491), 1, + ACTIONS(1495), 1, sym__eol, [10788] = 1, - ACTIONS(1493), 1, + ACTIONS(1497), 1, sym_string, [10792] = 1, - ACTIONS(1495), 1, + ACTIONS(1499), 1, sym__eol, [10796] = 1, - ACTIONS(1497), 1, + ACTIONS(1501), 1, sym_string, [10800] = 1, - ACTIONS(1499), 1, + ACTIONS(1503), 1, sym__eol, [10804] = 1, - ACTIONS(1501), 1, + ACTIONS(1505), 1, sym__eol, [10808] = 1, - ACTIONS(1503), 1, + ACTIONS(1507), 1, sym__eol, [10812] = 1, - ACTIONS(1505), 1, + ACTIONS(1509), 1, sym__eol, [10816] = 1, - ACTIONS(1507), 1, + ACTIONS(1511), 1, sym__eol, [10820] = 1, - ACTIONS(1509), 1, + ACTIONS(1513), 1, sym__eol, [10824] = 1, - ACTIONS(1511), 1, + ACTIONS(1515), 1, sym__eol, [10828] = 1, - ACTIONS(1513), 1, + ACTIONS(1517), 1, aux_sym__org_stars_token1, [10832] = 1, - ACTIONS(1515), 1, + ACTIONS(1519), 1, sym__eol, [10836] = 1, - ACTIONS(1517), 1, + ACTIONS(1521), 1, sym__eol, [10840] = 1, - ACTIONS(1519), 1, + ACTIONS(1523), 1, sym__eol, [10844] = 1, - ACTIONS(1521), 1, + ACTIONS(1525), 1, sym__eol, [10848] = 1, - ACTIONS(1523), 1, + ACTIONS(1527), 1, sym__eol, [10852] = 1, - ACTIONS(1525), 1, + ACTIONS(1529), 1, sym__eol, [10856] = 1, - ACTIONS(1527), 1, + ACTIONS(1531), 1, sym__eol, [10860] = 1, - ACTIONS(1529), 1, + ACTIONS(1533), 1, sym__eol, [10864] = 1, - ACTIONS(1531), 1, + ACTIONS(1535), 1, sym__eol, [10868] = 1, - ACTIONS(1533), 1, + ACTIONS(1537), 1, sym__eol, [10872] = 1, - ACTIONS(1535), 1, + ACTIONS(1539), 1, sym__eol, [10876] = 1, - ACTIONS(1537), 1, + ACTIONS(1541), 1, sym__eol, [10880] = 1, - ACTIONS(1539), 1, + ACTIONS(1543), 1, sym__eol, [10884] = 1, - ACTIONS(1541), 1, + ACTIONS(1545), 1, sym__eol, [10888] = 1, - ACTIONS(1543), 1, + ACTIONS(1547), 1, sym__eol, [10892] = 1, - ACTIONS(1545), 1, + ACTIONS(1549), 1, aux_sym__any_token1, [10896] = 1, - ACTIONS(1547), 1, + ACTIONS(1551), 1, sym__eol, [10900] = 1, - ACTIONS(1549), 1, + ACTIONS(1553), 1, sym_tag, [10904] = 1, - ACTIONS(1551), 1, + ACTIONS(1555), 1, sym_tag, [10908] = 1, - ACTIONS(1553), 1, + ACTIONS(1557), 1, sym__eol, [10912] = 1, - ACTIONS(1555), 1, + ACTIONS(1559), 1, sym_string, [10916] = 1, - ACTIONS(1557), 1, + ACTIONS(1561), 1, sym_string, [10920] = 1, - ACTIONS(1559), 1, + ACTIONS(1563), 1, sym_account, [10924] = 1, - ACTIONS(1561), 1, + ACTIONS(1565), 1, sym_account, [10928] = 1, - ACTIONS(1563), 1, + ACTIONS(1567), 1, sym_currency, [10932] = 1, - ACTIONS(1565), 1, + ACTIONS(1569), 1, sym_string, [10936] = 1, - ACTIONS(1567), 1, + ACTIONS(1571), 1, anon_sym_COLON, [10940] = 1, - ACTIONS(1569), 1, + ACTIONS(1573), 1, sym_string, [10944] = 1, - ACTIONS(1571), 1, + ACTIONS(1575), 1, sym_account, [10948] = 1, - ACTIONS(1573), 1, + ACTIONS(1577), 1, sym__eol, [10952] = 1, - ACTIONS(1575), 1, + ACTIONS(1579), 1, sym__eol, [10956] = 1, - ACTIONS(1577), 1, + ACTIONS(1581), 1, sym_string, [10960] = 1, - ACTIONS(1579), 1, + ACTIONS(1583), 1, sym_string, [10964] = 1, - ACTIONS(1581), 1, + ACTIONS(1585), 1, sym_string, [10968] = 1, - ACTIONS(1583), 1, + ACTIONS(1587), 1, sym__eol, [10972] = 1, - ACTIONS(1585), 1, + ACTIONS(1589), 1, sym__eol, [10976] = 1, - ACTIONS(1587), 1, + ACTIONS(1591), 1, sym_account, [10980] = 1, - ACTIONS(1589), 1, + ACTIONS(1593), 1, sym_key, [10984] = 1, - ACTIONS(1591), 1, + ACTIONS(1595), 1, sym_string, [10988] = 1, - ACTIONS(1593), 1, + ACTIONS(1597), 1, sym_account, [10992] = 1, - ACTIONS(1595), 1, + ACTIONS(1599), 1, sym_account, [10996] = 1, - ACTIONS(1597), 1, + ACTIONS(1601), 1, sym_currency, [11000] = 1, - ACTIONS(1599), 1, + ACTIONS(1603), 1, sym_string, [11004] = 1, - ACTIONS(1601), 1, + ACTIONS(1605), 1, sym_string, [11008] = 1, - ACTIONS(1603), 1, + ACTIONS(1607), 1, sym_account, [11012] = 1, - ACTIONS(1605), 1, + ACTIONS(1609), 1, sym_account, }; @@ -15586,726 +15609,728 @@ static const TSParseActionEntry ts_parse_actions[] = { [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(591), [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(457), [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 12), - [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 12), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 13), + [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 13), [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 30), - [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 30), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 29), - [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 29), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 12), - [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 12), - [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 11), - [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 11), - [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 11), - [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 11), - [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 30), - [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 30), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 31), + [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 31), + [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 30), + [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 30), + [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 13), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 13), + [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 12), + [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 12), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 12), + [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 12), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 31), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 31), [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 29), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 29), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 38), - [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 38), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 28), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 28), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 3), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 3), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 28), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 28), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_transaction_repeat1, 2), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 2), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 2), SHIFT_REPEAT(291), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 7, .production_id = 38), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 7, .production_id = 38), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 3, .production_id = 3), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 3, .production_id = 3), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 3), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 3), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 2), SHIFT_REPEAT(290), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 18), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 18), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 4, .production_id = 7), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 4, .production_id = 7), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 5, .production_id = 23), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 5, .production_id = 23), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 17), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 17), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 31), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 31), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 16), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 16), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__key_value_list, 2), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_value_list, 2), SHIFT_REPEAT(399), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__key_value_list, 2), - [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 5, .production_id = 27), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 5, .production_id = 27), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 5, .production_id = 9), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 5, .production_id = 9), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 5, .production_id = 26), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 5, .production_id = 26), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 5, .production_id = 25), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 5, .production_id = 25), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query, 5, .production_id = 24), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query, 5, .production_id = 24), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_price, 5, .production_id = 22), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_price, 5, .production_id = 22), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 5, .production_id = 21), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 5, .production_id = 21), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 5, .production_id = 20), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 5, .production_id = 20), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 5, .production_id = 19), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 5, .production_id = 19), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 5, .production_id = 8), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 5, .production_id = 8), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 5, .production_id = 17), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 5, .production_id = 17), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 5, .production_id = 7), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 5, .production_id = 7), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 18), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 18), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 17), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 17), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 16), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 16), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 7), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 7), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 8, .production_id = 39), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 8, .production_id = 39), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 33), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 33), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 6, .production_id = 17), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 6, .production_id = 17), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 6, .production_id = 19), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 6, .production_id = 19), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 4, .production_id = 9), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 4, .production_id = 9), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 4, .production_id = 8), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 4, .production_id = 8), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 4, .production_id = 7), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 4, .production_id = 7), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 6, .production_id = 20), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 6, .production_id = 20), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 6, .production_id = 34), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 6, .production_id = 34), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 7, .production_id = 36), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 7, .production_id = 36), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 7, .production_id = 35), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 7, .production_id = 35), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 7, .production_id = 34), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 7, .production_id = 34), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 33), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 33), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 6, .production_id = 21), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 6, .production_id = 21), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 39), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 39), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 32), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 32), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 31), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 31), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 6, .production_id = 35), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 6, .production_id = 35), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_price, 6, .production_id = 22), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_price, 6, .production_id = 22), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 6, .production_id = 23), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 6, .production_id = 23), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query, 6, .production_id = 24), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query, 6, .production_id = 24), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 6, .production_id = 27), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 6, .production_id = 27), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 32), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 32), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 6, .production_id = 36), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 6, .production_id = 36), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 6, .production_id = 26), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 6, .production_id = 26), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 6, .production_id = 25), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 6, .production_id = 25), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_value_list, 2), SHIFT_REPEAT(403), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 66), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 66), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 42), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 42), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 9, .production_id = 86), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 9, .production_id = 86), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 85), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 85), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 84), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 84), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 83), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 83), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 82), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 82), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 81), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 81), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 80), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 80), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 79), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 79), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 78), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 78), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 67), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 67), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 77), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 77), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 76), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 76), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 75), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 75), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 74), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 74), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 73), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 73), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 72), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 72), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 71), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 71), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 69), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 69), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 55), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 55), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 68), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 68), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 67), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 67), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 54), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 54), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 65), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 65), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 64), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 64), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 63), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 63), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 62), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 62), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 51), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 51), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 61), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 61), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 60), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 60), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 57), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 57), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 56), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 56), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 55), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 55), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 54), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 54), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 45), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 45), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 53), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 53), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 43), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 43), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 52), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 52), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 51), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 51), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 3, .production_id = 37), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 3, .production_id = 37), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 3), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_transaction_repeat1, 3), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 42), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 42), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_value_line, 3), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_line, 3), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 37), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 37), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 47), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 47), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 43), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 43), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 46), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 46), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 44), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 44), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 30), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 30), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 39), + [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 39), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 6, .production_id = 29), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 6, .production_id = 29), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 11), + [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 11), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 4, .production_id = 3), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 4, .production_id = 3), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 29), + [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 29), + [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_transaction_repeat1, 2), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 2), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 2), SHIFT_REPEAT(291), + [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 7, .production_id = 39), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 7, .production_id = 39), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 3, .production_id = 3), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 3, .production_id = 3), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction, 5, .production_id = 11), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction, 5, .production_id = 11), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 2), SHIFT_REPEAT(290), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 19), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 19), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 4, .production_id = 7), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 4, .production_id = 7), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 5, .production_id = 24), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 5, .production_id = 24), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 18), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 18), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 32), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 32), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 17), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 17), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__key_value_list, 2), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_value_list, 2), SHIFT_REPEAT(399), + [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__key_value_list, 2), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 5, .production_id = 28), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 5, .production_id = 28), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 5, .production_id = 9), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 5, .production_id = 9), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 5, .production_id = 27), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 5, .production_id = 27), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 5, .production_id = 26), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 5, .production_id = 26), + [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query, 5, .production_id = 25), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query, 5, .production_id = 25), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_price, 5, .production_id = 23), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_price, 5, .production_id = 23), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 5, .production_id = 22), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 5, .production_id = 22), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 5, .production_id = 21), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 5, .production_id = 21), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 5, .production_id = 20), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 5, .production_id = 20), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 5, .production_id = 8), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 5, .production_id = 8), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 5, .production_id = 18), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 5, .production_id = 18), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 5, .production_id = 7), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 5, .production_id = 7), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 19), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 19), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 18), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 18), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 17), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 17), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 5, .production_id = 7), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 5, .production_id = 7), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 8, .production_id = 40), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 8, .production_id = 40), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 34), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 34), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close, 6, .production_id = 18), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close, 6, .production_id = 18), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 6, .production_id = 20), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 6, .production_id = 20), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 4, .production_id = 9), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 4, .production_id = 9), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commodity, 4, .production_id = 8), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commodity, 4, .production_id = 8), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 4, .production_id = 7), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 4, .production_id = 7), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 6, .production_id = 21), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 6, .production_id = 21), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 6, .production_id = 35), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 6, .production_id = 35), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 7, .production_id = 37), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 7, .production_id = 37), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 7, .production_id = 36), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 7, .production_id = 36), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pad, 7, .production_id = 35), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pad, 7, .production_id = 35), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 34), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 34), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 6, .production_id = 22), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 6, .production_id = 22), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 40), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 40), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 33), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 33), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 7, .production_id = 32), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 7, .production_id = 32), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_balance, 6, .production_id = 36), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_balance, 6, .production_id = 36), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_price, 6, .production_id = 23), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_price, 6, .production_id = 23), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 6, .production_id = 24), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 6, .production_id = 24), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query, 6, .production_id = 25), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query, 6, .production_id = 25), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom, 6, .production_id = 28), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom, 6, .production_id = 28), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open, 6, .production_id = 33), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open, 6, .production_id = 33), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 6, .production_id = 37), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 6, .production_id = 37), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 6, .production_id = 27), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_document, 6, .production_id = 27), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 6, .production_id = 26), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 6, .production_id = 26), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_value_list, 2), SHIFT_REPEAT(403), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 67), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 67), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 43), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 43), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 9, .production_id = 87), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 9, .production_id = 87), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 86), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 86), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 85), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 85), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 84), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 84), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 83), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 83), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 8, .production_id = 82), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 8, .production_id = 82), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 81), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 81), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 80), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 80), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 79), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 79), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 68), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 68), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 78), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 78), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 77), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 77), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 76), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 76), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 75), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 75), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 74), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 74), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 73), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 73), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 7, .production_id = 72), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 7, .production_id = 72), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 70), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 70), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 56), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 56), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 69), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 69), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 68), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 68), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 55), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 55), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 66), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 66), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 65), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 65), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 64), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 64), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 63), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 63), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 52), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 52), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 62), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 62), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 61), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 61), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 6, .production_id = 58), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 6, .production_id = 58), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 57), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 57), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 56), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 56), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 55), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 55), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 46), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 46), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 54), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 54), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 44), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 44), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 53), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 53), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 52), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 52), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 3, .production_id = 38), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 3, .production_id = 38), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_transaction_repeat1, 3), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_transaction_repeat1, 3), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 43), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 43), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_value_line, 3), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_line, 3), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 38), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 38), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 48), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 48), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 44), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 44), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 5, .production_id = 47), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 5, .production_id = 47), [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 45), [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 45), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 4, .production_id = 15), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 4, .production_id = 15), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive, 1), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plugin, 3), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plugin, 3), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__skipped_lines, 3), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__skipped_lines, 3), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__entry, 1), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entry, 1), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 1), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 1), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pushtag, 3), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pushtag, 3), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_poptag, 3), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_poptag, 3), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pushmeta, 3), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pushmeta, 3), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 3), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__skipped_lines, 2), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__skipped_lines, 2), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_headline, 3), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_headline, 3), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4, .production_id = 13), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4, .production_id = 13), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_headline, 4, .production_id = 14), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_headline, 4, .production_id = 14), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plugin, 4), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plugin, 4), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_popmeta, 4), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_popmeta, 4), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(335), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(320), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(312), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(328), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 1), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 1), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_number_expr, 2), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_number_expr, 2), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_number_expr, 3), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_number_expr, 3), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_value, 1), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom_value, 1), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren__number_expr, 3), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren__number_expr, 3), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 1, .production_id = 41), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 1, .production_id = 41), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amount, 2), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_amount, 2), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_repeat2, 2), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_repeat2, 1), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat2, 2, .production_id = 6), SHIFT_REPEAT(569), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat2, 2, .production_id = 6), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_repeat1, 2), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_repeat1, 2), SHIFT_REPEAT(478), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_amount, 2), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_amount, 2), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_txn, 1), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__txn_strings, 1, .production_id = 4), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_repeat2, 2), SHIFT_REPEAT(355), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tags_links_repeat1, 2), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tags_links_repeat1, 2), SHIFT_REPEAT(380), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tags_links, 1), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cost_spec, 2), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cost_spec, 2), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cost_spec, 3, .production_id = 50), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cost_spec, 3, .production_id = 50), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cost_comp_list_repeat1, 2), SHIFT_REPEAT(289), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__cost_comp_list_repeat1, 2), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cost_comp_list_repeat1, 2), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cost_comp_list, 1), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cost_comp_list, 1), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cost_comp_list, 2), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cost_comp_list, 2), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__txn_strings, 2, .production_id = 10), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 1), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 3, .production_id = 59), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 3, .production_id = 59), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 3, .production_id = 58), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 3, .production_id = 58), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 2, .production_id = 48), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 2, .production_id = 48), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 2, .production_id = 49), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 2, .production_id = 49), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 1, .production_id = 40), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 1, .production_id = 40), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 4, .production_id = 70), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 4, .production_id = 70), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cost_comp, 1), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cost_comp, 1), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_price_annotation, 1), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amount_tolerance, 4), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amount_tolerance, 2), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opt_booking, 1), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat2, 1, .production_id = 2), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__org_stars, 2), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1291] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optflag, 1), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_posting, 4, .production_id = 46), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_posting, 4, .production_id = 46), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 4, .production_id = 16), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 4, .production_id = 16), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive, 1), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plugin, 3), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plugin, 3), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__skipped_lines, 3), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__skipped_lines, 3), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__entry, 1), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entry, 1), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 1), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 1), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pushtag, 3), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pushtag, 3), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_poptag, 3), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_poptag, 3), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pushmeta, 3), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pushmeta, 3), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 3), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__skipped_lines, 2), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__skipped_lines, 2), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_headline, 3), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_headline, 3), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4, .production_id = 14), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4, .production_id = 14), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_headline, 4, .production_id = 15), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_headline, 4, .production_id = 15), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plugin, 4), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plugin, 4), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_popmeta, 4), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_popmeta, 4), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(335), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(320), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(312), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_custom_repeat1, 2), SHIFT_REPEAT(328), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 1), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 1), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_number_expr, 2), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_number_expr, 2), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_number_expr, 3), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_number_expr, 3), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_value, 1), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom_value, 1), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren__number_expr, 3), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren__number_expr, 3), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 1, .production_id = 42), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 1, .production_id = 42), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amount, 2), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_amount, 2), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_repeat2, 2), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_repeat2, 1), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat2, 2, .production_id = 6), SHIFT_REPEAT(569), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat2, 2, .production_id = 6), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_repeat1, 2), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_repeat1, 2), SHIFT_REPEAT(478), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_amount, 2), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_amount, 2), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_txn, 1), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__txn_strings, 1, .production_id = 4), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_repeat2, 2), SHIFT_REPEAT(355), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tags_links_repeat1, 2), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tags_links_repeat1, 2), SHIFT_REPEAT(380), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tags_links, 1), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cost_spec, 2), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cost_spec, 2), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cost_spec, 3, .production_id = 51), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cost_spec, 3, .production_id = 51), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cost_comp_list_repeat1, 2), SHIFT_REPEAT(289), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__cost_comp_list_repeat1, 2), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cost_comp_list_repeat1, 2), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cost_comp_list, 1), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cost_comp_list, 1), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cost_comp_list, 2), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cost_comp_list, 2), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__txn_strings, 2, .production_id = 10), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 1), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 3, .production_id = 60), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 3, .production_id = 60), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 3, .production_id = 59), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 3, .production_id = 59), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 2, .production_id = 49), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 2, .production_id = 49), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 2, .production_id = 50), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 2, .production_id = 50), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 1, .production_id = 41), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 1, .production_id = 41), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_amount, 4, .production_id = 71), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_amount, 4, .production_id = 71), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cost_comp, 1), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cost_comp, 1), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_price_annotation, 1), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amount_tolerance, 4), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_amount_tolerance, 2), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opt_booking, 1), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat2, 1, .production_id = 2), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__org_stars, 2), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1295] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optflag, 1), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), }; #ifdef __cplusplus